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

Required Methods§

source

fn log_err(&self)

Implementations on Foreign Types§

source§

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

source§

fn log_err(&self)

source§

impl<T> ErrorHandlingExtensions for Option<T>

source§

fn log_err(&self)

Implementors§