Trait PrettyError

Source
pub trait PrettyError: ToString {
    // Provided methods
    fn brief(&self) -> String { ... }
    fn details(&self) -> Option<String> { ... }
    fn help(&self) -> Option<String> { ... }
    fn source(&self) -> Option<Box<Source>> { ... }
    fn trace(&self) -> Vec<Source> { ... }
}

Provided Methods§

Source

fn brief(&self) -> String

Source

fn details(&self) -> Option<String>

Source

fn help(&self) -> Option<String>

Source

fn source(&self) -> Option<Box<Source>>

Source

fn trace(&self) -> Vec<Source>

Implementors§