pub struct Map<T, F> { /* private fields */ }Trait Implementations§
Source§impl<Bkend, T, S, F, Ct, O, E> BackendStreamingTask<Bkend> for Map<T, F>
 
impl<Bkend, T, S, F, Ct, O, E> BackendStreamingTask<Bkend> for Map<T, F>
type Output = Result<<S as BackendStreamingTask<Bkend>>::Output, E>
type MetadataType = Ct
fn into_stream( self, backend: &Bkend, ) -> impl Stream<Item = Self::Output> + Send + Unpin + 'static
Source§fn metadata() -> Vec<Self::MetadataType>
 
fn metadata() -> Vec<Self::MetadataType>
Metadata provides a way of grouping different tasks for use in
constraints, if you override the default implementation.
Auto Trait Implementations§
impl<T, F> Freeze for Map<T, F>
impl<T, F> RefUnwindSafe for Map<T, F>where
    T: RefUnwindSafe,
    F: RefUnwindSafe,
impl<T, F> Send for Map<T, F>
impl<T, F> Sync for Map<T, F>
impl<T, F> Unpin for Map<T, F>
impl<T, F> UnwindSafe for Map<T, F>where
    T: UnwindSafe,
    F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more