Trait ErrorDebugger

Source
pub trait ErrorDebugger {
    // Required method
    fn print_err(&self, msg: &str);
}

Required Methods§

Source

fn print_err(&self, msg: &str)

Implementations on Foreign Types§

Source§

impl<T, E: Debug> ErrorDebugger for Result<T, E>

Source§

fn print_err(&self, msg: &str)

Implementors§