derive(Display)

This library provides a convenient derive macro for the standard library's [std::fmt::Display] trait. displaythis is a fork of thiserror, modified for types that are not errors.


Example

```rust

use std::io;

use displaythis::Display;

[derive(Display, Debug)]

pub enum DataStoreError { #[display("data store disconnected")] Disconnect(io::Error), #[display("the data for key {0} is not available")] Redaction(String), #[display("invalid header (expected {expected:?}, found {found:?})")] InvalidHeader { expected: String, found: String, }, #[display("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.