pub trait SyncResultExt {
    type Value;

    // Required method
    fn sync_err_into<S>(self) -> Result<Self::Value, Error<S>>
       where S: Scope;
}

Required Associated Types§

Required Methods§

source

fn sync_err_into<S>(self) -> Result<Self::Value, Error<S>>where S: Scope,

Implementations on Foreign Types§

source§

impl<T, E> SyncResultExt for Result<T, E>where E: Send + 'static,

§

type Value = T

source§

fn sync_err_into<S>(self) -> Result<T, Error<S>>where S: Scope,

Implementors§