pub trait ErrorFormatter: Sized {
    fn format_error(error: &Error<Self>) -> StyledStr;
}
Expand description

Defines how to format an error for displaying to the user

Required Methods§

Stylize the error for the terminal

Implementors§