pub type BoxError = Box<dyn Error + Send>;Expand description
The type that shall be used as Error type when returning a Result. This allows the usage of the
? operator on functions or methods.
Aliased Typeยง
pub struct BoxError(/* private fields */);