Type Alias BoxError

Source
pub(crate) type BoxError = Box<dyn Error + Send + Sync>;
Expand description

A type alias for a boxed error that is sendable and syncable.

Aliased Typeยง

pub(crate) struct BoxError(/* private fields */);