pub trait ResultXExt {
    // Required method
    fn assume_error_into_backcast<E>(self) -> Option<E>
       where E: Send + Sync + 'static;
}

Required Methods§

source

fn assume_error_into_backcast<E>(self) -> Option<E>where E: Send + Sync + 'static,

Implementations on Foreign Types§

source§

impl<T, S> ResultXExt for Result<T, Error<S>>

source§

fn assume_error_into_backcast<E>(self) -> Option<E>where E: Send + Sync + 'static,

Implementors§