Type Alias BoxError

Source
pub type BoxError = Box<dyn Error + Send + Sync + 'static>;
Expand description

A type alias for a boxed Error type that is Send, Sync, and 'static.

Aliased Typeยง

struct BoxError(/* private fields */);