Crate thiserror
This library provides a convenient derive macro for the standard library's
std::error::Error trait.
Example
# use io;
use Error;
Details
-
Thiserror deliberately does not appear in your public API. You get the same thing as if you had written an implementation of
std::error::Errorby hand, and switching from handwritten impls to thiserror or vice versa is not a breaking change. -
Errors may be enums, structs with named fields, tuple structs, or unit structs.
-
A
Displayimpl is generated for your error if you provide#[error("...")]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.
#[error("{var}")]⟶write!("{}", self.var)#[error("{0}")]⟶write!("{}", self.0)#[error("{var:?}")]⟶write!("{:?}", self.var)#[error("{0:?}")]⟶write!("{:?}", self.0)
These shorthands can be used together with any additional format args, which may be arbitrary expressions. For example:
# use i32; # use Error; #If one of the additional expression arguments needs to refer to a field of the struct or enum, then refer to named fields as
.varand tuple fields as.0.# use Error; # # # # # # -
A
Fromimpl is generated for each variant that contains a#[from]attribute.The variant using
#[from]must not contain any other fields beyond the source error (and possibly a backtrace — see below). Usually#[from]fields are unnamed, but#[from]is allowed on a named field too.# use ; # use io; # use Error; # # # # # -
The Error trait's
source()method is implemented to return whichever field has a#[source]attribute or is namedsource, if any. This is for identifying the underlying lower level error that caused your error.The
#[from]attribute always implies that the same field is#[source], so you don't ever need to specify both attributes.Any error type that implements
std::error::Erroror dereferences todyn std::error::Errorwill work as a source.# use ; # use Error; # # # -
The Error trait's
provide()method is implemented to provide whichever field has a type namedBacktrace, if any, as astd::backtrace::Backtrace. UsingBacktracein errors requires a nightly compiler with Rust version 1.73 or newer.# const IGNORE: &str = stringify! ; -
If a field is both a source (named
source, or has#[source]or#[from]attribute) and is marked#[backtrace], then the Error trait'sprovide()method is forwarded to the source'sprovideso that both layers of the error share the same backtrace. The#[backtrace]attribute requires a nightly compiler with Rust version 1.73 or newer.# const IGNORE: &str = stringify! ; -
For variants that use
#[from]and also contain aBacktracefield, a backtrace is captured from within theFromimpl.# const IGNORE: &str = stringify! ; -
Errors may use
error(transparent)to forward the source and Display methods straight through to an underlying error without adding an additional message. This would be appropriate for enums that need an "anything else" variant.# use Error; #Another use case is hiding implementation details of an error representation behind an opaque error type, so that the representation is able to evolve without breaking the crate's public API.
# use Error; # // PublicError is public, but opaque and easy to keep compatible. ; // Private and free to change across minor version of the crate. -
See also the
anyhowlibrary for a convenient single error type to use in application code.