[]Struct async_std::stream::Fuse

pub struct Fuse<S> { /* fields omitted */ }

A stream that yields None forever after the underlying stream yields None once.

This struct is created by the fuse method on Stream. See its documentation for more.

Trait Implementations

impl<S: Stream> Stream for Fuse<S>[src]

type Item = S::Item

The type of items yielded by this stream. Read more

impl<'__pin, S> Unpin for Fuse<S> where
    __Origin<'__pin, S>: Unpin

impl<S: Clone> Clone for Fuse<S>[src]

impl<S: Debug> Debug for Fuse<S>[src]

Auto Trait Implementations

impl<S> Send for Fuse<S> where
    S: Send

impl<S> Sync for Fuse<S> where
    S: Sync

impl<S> UnwindSafe for Fuse<S> where
    S: UnwindSafe

impl<S> RefUnwindSafe for Fuse<S> where
    S: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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