[][src]Struct futures::stream::SplitSink

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

A Sink part of the split pair

Methods

impl<S, Item> SplitSink<S, Item> where
    S: Unpin + Sink<Item>, 
[src]

pub fn reunite(self, other: SplitStream<S>) -> Result<S, ReuniteError<S, Item>>[src]

Attempts to put the two "halves" of a split Stream + Sink back together. Succeeds only if the SplitStream<S> and SplitSink<S> are a matching pair originating from the same call to Stream::split.

Trait Implementations

impl<S, Item> Unpin for SplitSink<S, Item>[src]

impl<S, Item> Sink<Item> for SplitSink<S, Item> where
    S: Sink<Item>, 
[src]

type Error = <S as Sink<Item>>::Error

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

impl<S, Item> Debug for SplitSink<S, Item> where
    Item: Debug,
    S: Debug
[src]

Auto Trait Implementations

impl<S, Item> Send for SplitSink<S, Item> where
    Item: Send,
    S: Send

impl<S, Item> Sync for SplitSink<S, Item> where
    Item: Sync,
    S: Send

impl<S, Item> !UnwindSafe for SplitSink<S, Item>

impl<S, Item> !RefUnwindSafe for SplitSink<S, Item>

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]

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