ErrorExt

Trait ErrorExt 

Source
pub trait ErrorExt {
    // Required method
    fn boxed(self) -> Box<dyn Error + Send + Sync>;
}
Expand description

Required Methods§

Source

fn boxed(self) -> Box<dyn Error + Send + Sync>

Implementors§

Source§

impl<T: Error + Send + Sync + 'static> ErrorExt for T