derive(Display) /// From<docs>

Latest Version Rust Documentation

This library provides a convenient derive macro for the standard library's [std::fmt::Display] trait.

toml [dependencies] displaydoc = "0.1.1"

Compiler support: requires rustc 1.31+


Example

```rust use displaydoc::DisplayDoc; use thiserror::Error;

[derive(DisplayDoc, Error, Debug)]

pub enum DataStoreError { /// data store disconnected Disconnect(#[source] io::Error), /// the data for key {0} is not available Redaction(String), /// invalid header (expected {expected:?}, found {found:?}) InvalidHeader { expected: String, found: String, }, /// unknown data store error Unknown, } ```


Details


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.