pub trait StdErrorPP: StdError + Sized {
    // Provided method
    fn pp<'a>(&'a self) -> ErrorPP<'a> { ... }
}

Provided Methods§

source

fn pp<'a>(&'a self) -> ErrorPP<'a>

Implementors§

source§

impl<E> StdErrorPP for Ewhere E: StdError + Sized,