[][src]Struct futures::stream::Collect

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct Collect<St, C> { /* fields omitted */ }

Future for the collect method.

Trait Implementations

impl<St, C> Debug for Collect<St, C> where
    C: Debug,
    St: Debug
[src]

impl<St, C> FusedFuture for Collect<St, C> where
    C: Default + Extend<<St as Stream>::Item>,
    St: FusedStream
[src]

impl<St, C> Future for Collect<St, C> where
    C: Default + Extend<<St as Stream>::Item>,
    St: Stream
[src]

type Output = C

The type of value produced on completion.

impl<St, C> Unpin for Collect<St, C> where
    St: Unpin
[src]

Auto Trait Implementations

impl<St, C> RefUnwindSafe for Collect<St, C> where
    C: RefUnwindSafe,
    St: RefUnwindSafe

impl<St, C> Send for Collect<St, C> where
    C: Send,
    St: Send

impl<St, C> Sync for Collect<St, C> where
    C: Sync,
    St: Sync

impl<St, C> UnwindSafe for Collect<St, C> where
    C: UnwindSafe,
    St: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.