[][src]Struct smol::stream::CollectFuture

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

Future for the StreamExt::collect() method.

Trait Implementations

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

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

type Output = C

The type of value produced on completion.

impl<'__pin, St, C> Unpin for CollectFuture<St, C> where
    __Origin<'__pin, St, C>: Unpin
[src]

Auto Trait Implementations

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

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

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

impl<St, C> UnwindSafe for CollectFuture<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.