1 unstable release
| 0.1.0 | Nov 21, 2019 |
|---|
#2050 in Procedural macros
670KB
293 lines
derive(Display) /// From<docs>
This library provides a convenient derive macro for the standard library's
core::fmt::Display trait.
[dependencies]
displaydoc-watt = "0.1"
Compiler support: requires rustc 1.34+
Example
use displaydoc_watt::Display;
use thiserror::Error;
#[derive(Display, 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
-
A
Displayimpl is generated for your type if you provide doc comment messages on the struct or each variant of your enum, as shown above in the example.The messages support a shorthand for interpolating fields from the error.
/// {var}⟶write!("{}", self.var)/// {0}⟶write!("{}", self.0)/// {var:?}⟶write!("{:?}", self.var)/// {0:?}⟶write!("{:?}", self.0)
FAQ
-
Is this crate
no_stdcompatible?- Not at the moment, the primary
displaydoccrate does support no_std but I have not yet figured out how to make that work when the proc macro is compiled to wasm.
- Not at the moment, the primary
-
Does this crate work with
PathandPathBufvia theDisplaytrait?- Yuuup. This crate uses @dtolnay's autoref specialization technique to add a special trait for types to get the display impl, it then specializes for
PathandPathBufand when either of these types are found it callsself.display()to get astd::path::Display<'_>type which can be used with the Display format specifier!
- Yuuup. This crate uses @dtolnay's autoref specialization technique to add a special trait for types to get the display impl, it then specializes for
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.