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,

§

type Output = T

source§

fn unwrap_pretty(self) -> Self::Output

Implementors§