[][src]Struct futures_util::compat::CompatSink

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

Converts a futures 0.3 Sink object to a futures 0.1-compatible version

Methods

impl<T, Item> CompatSink<T, Item>[src]

pub fn new(inner: T) -> Self[src]

Creates a new CompatSink.

Important traits for &'_ mut F
pub fn get_ref(&self) -> &T[src]

Get a reference to 0.3 Sink contained within.

Important traits for &'_ mut F
pub fn get_mut(&mut self) -> &mut T[src]

Get a mutable reference to 0.3 Sink contained within.

pub fn into_inner(self) -> T[src]

Returns the inner item.

Trait Implementations

impl<T: Debug, Item: Debug> Debug for CompatSink<T, Item>[src]

impl<T, Item> Sink for CompatSink<T, Item> where
    T: Sink03<Item> + Unpin
[src]

type SinkItem = Item

The type of value that the sink accepts.

type SinkError = T::Error

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

Auto Trait Implementations

impl<T, Item> Send for CompatSink<T, Item> where
    T: Send

impl<T, Item> Sync for CompatSink<T, Item> where
    T: Sync

impl<T, Item> Unpin for CompatSink<T, Item> where
    T: Unpin

impl<T, Item> UnwindSafe for CompatSink<T, Item> where
    T: UnwindSafe

impl<T, Item> RefUnwindSafe for CompatSink<T, Item> 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> 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]