Struct futures_util::stream::TryFold  
source · [−]pub struct TryFold<St, Fut, T, F> { /* private fields */ }Expand description
Future for the try_fold method.
Trait Implementations
sourceimpl<St, Fut, T, F> FusedFuture for TryFold<St, Fut, T, F>where
    St: TryStream,
    F: FnMut(T, St::Ok) -> Fut,
    Fut: TryFuture<Ok = T, Error = St::Error>,
 
impl<St, Fut, T, F> FusedFuture for TryFold<St, Fut, T, F>where
    St: TryStream,
    F: FnMut(T, St::Ok) -> Fut,
    Fut: TryFuture<Ok = T, Error = St::Error>,
sourcefn is_terminated(&self) -> bool
 
fn is_terminated(&self) -> bool
Returns 
true if the underlying future should no longer be polled.sourceimpl<St, Fut, T, F> Future for TryFold<St, Fut, T, F>where
    St: TryStream,
    F: FnMut(T, St::Ok) -> Fut,
    Fut: TryFuture<Ok = T, Error = St::Error>,
 
impl<St, Fut, T, F> Future for TryFold<St, Fut, T, F>where
    St: TryStream,
    F: FnMut(T, St::Ok) -> Fut,
    Fut: TryFuture<Ok = T, Error = St::Error>,
impl<'__pin, St, Fut, T, F> Unpin for TryFold<St, Fut, T, F>where
    __Origin<'__pin, St, Fut, T, F>: Unpin,
Auto Trait Implementations
impl<St, Fut, T, F> RefUnwindSafe for TryFold<St, Fut, T, F>where
    F: RefUnwindSafe,
    Fut: RefUnwindSafe,
    St: RefUnwindSafe,
    T: RefUnwindSafe,
impl<St, Fut, T, F> Send for TryFold<St, Fut, T, F>where
    F: Send,
    Fut: Send,
    St: Send,
    T: Send,
impl<St, Fut, T, F> Sync for TryFold<St, Fut, T, F>where
    F: Sync,
    Fut: Sync,
    St: Sync,
    T: Sync,
impl<St, Fut, T, F> UnwindSafe for TryFold<St, Fut, T, F>where
    F: UnwindSafe,
    Fut: UnwindSafe,
    St: UnwindSafe,
    T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F> IntoFuture for Fwhere
    F: Future,
 
impl<F> IntoFuture for Fwhere
    F: Future,
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
 
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more