pub trait ErrorFormatter: Send + Sync {
    fn format_error(&self, err: &Error) -> String;
}

Required Methods

Implementors