Type Alias BoxedError

pub type BoxedError = Box<dyn Error + Send + Sync>;
Expand description

A boxed error type that is Send, Sync, and 'static.

Aliased Typeยง

struct BoxedError(/* private fields */);