pub trait PrettyError: Error + Sized {
    // Provided method
    fn fmt_pretty(&self, fmt: &mut ErrorFormatter<'_>) { ... }
}

Provided Methods§

source

fn fmt_pretty(&self, fmt: &mut ErrorFormatter<'_>)

Object Safety§

This trait is not object safe.

Implementors§