[][src]Struct futures::sink::Drain

#[must_use = "sinks do nothing unless polled"]
pub struct Drain<T> { /* fields omitted */ }

Sink for the drain function.

Trait Implementations

impl<T> Sink<T> for Drain<T>[src]

type Error = Infallible

The type of value produced by the sink when an error occurs.

impl<T> Unpin for Drain<T>[src]

impl<T> Debug for Drain<T> where
    T: Debug
[src]

Auto Trait Implementations

impl<T> Send for Drain<T> where
    T: Send

impl<T> Sync for Drain<T> where
    T: Sync

impl<T> UnwindSafe for Drain<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Drain<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T, Item> SinkExt<Item> for T where
    T: Sink<Item> + ?Sized
[src]