Struct futures_util::stream::SplitStream [−][src]
#[must_use = "streams do nothing unless polled"]pub struct SplitStream<S>(_);
A Stream
part of the split pair
Implementations
impl<S: Unpin> SplitStream<S>
[src]
impl<S: Unpin> SplitStream<S>
[src]pub fn reunite<Item>(
self,
other: SplitSink<S, Item>
) -> Result<S, ReuniteError<S, Item>> where
S: Sink<Item>,
[src]
self,
other: SplitSink<S, Item>
) -> Result<S, ReuniteError<S, Item>> where
S: Sink<Item>,
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 StreamExt::split
.
Trait Implementations
impl<S: Stream> Stream for SplitStream<S>
[src]
impl<S: Stream> Stream for SplitStream<S>
[src]impl<S> Unpin for SplitStream<S>
[src]
Auto Trait Implementations
impl<S> !RefUnwindSafe for SplitStream<S>
impl<S> Send for SplitStream<S> where
S: Send,
S: Send,
impl<S> Sync for SplitStream<S> where
S: Send,
S: Send,