pub trait SyncErrorExt {
    // Required method
    fn sync_into<S>(self) -> Error<S>
       where S: Scope;
}

Required Methods§

source

fn sync_into<S>(self) -> Error<S>where S: Scope,

Implementors§

source§

impl<T> SyncErrorExt for Twhere T: Send + 'static,