Type Alias BoxedError

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

A boxed type-erased std::error::Error that can be sent between threads.

Aliased Typeยง

pub struct BoxedError(/* private fields */);