Skip to main content

BoxError

Type Alias BoxError 

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

Alias for a type-erased error type.

See the module level documentation for more information.

Aliased Type§

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

Trait Implementations§

Source§

impl BoxErrorExt for BoxError

Source§

fn from_static_str(e: &'static str) -> Self

Create a BoxError from a static str. Read more