pub trait anyhowErrorExt {
    fn for_each(&self, f: &mut dyn FnMut(&str)) -> Result<(), Error>;
    fn d(&self) -> AnyhowDisplay<'_>;
    fn end_process(self, estatus: u8) -> !;
}

Required Methods

Implementors