ErrorHandlingExtensions

Trait ErrorHandlingExtensions 

Source
pub trait ErrorHandlingExtensions {
    // Required method
    fn log_err(&self);
}

Required Methods§

Source

fn log_err(&self)

Implementations on Foreign Types§

Source§

impl<T> ErrorHandlingExtensions for Option<T>

Source§

fn log_err(&self)

Source§

impl<T, E> ErrorHandlingExtensions for Result<T, E>
where E: Debug,

Source§

fn log_err(&self)

Implementors§