[][src]Struct futures_util::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: Debug, C: Debug> Debug for Collect<St, C>[src]

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

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

type Output = C

The type of value produced on completion.

impl<St, C> PinnedDrop for Collect<St, C>[src]

impl<'pin, St, C> Unpin for Collect<St, C> where
    __Collect<'pin, St, C>: 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, 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.