Trait UnwrapPretty

Source
pub trait UnwrapPretty {
    type Output;

    // Required method
    fn unwrap_pretty(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn unwrap_pretty(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<T, E> UnwrapPretty for Result<T, E>
where E: Diagnostic + Sync + Send + 'static,

Source§

type Output = T

Source§

fn unwrap_pretty(self) -> Self::Output

Implementors§