Struct futures::stream::SplitStream [−][src]
#[must_use = "streams do nothing unless polled"]pub struct SplitStream<S>(_);
A Stream
part of the split pair
Methods
impl<S> SplitStream<S> where
S: Unpin + Sink,
[src]
impl<S> SplitStream<S> where
S: Unpin + Sink,
pub fn reunite(self, other: SplitSink<S>) -> Result<S, ReuniteError<S>>
[src]
pub fn reunite(self, other: SplitSink<S>) -> Result<S, ReuniteError<S>>
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> Unpin for SplitStream<S>
[src]
impl<S> Unpin for SplitStream<S>
impl<S> Debug for SplitStream<S> where
S: Debug,
[src]
impl<S> Debug for SplitStream<S> where
S: Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<S> Stream for SplitStream<S> where
S: Stream,
[src]
impl<S> Stream for SplitStream<S> where
S: Stream,
type Item = <S as Stream>::Item
Values yielded by the stream.
fn poll_next(
self: PinMut<SplitStream<S>>,
cx: &mut Context
) -> Poll<Option<<S as Stream>::Item>>
[src]
fn poll_next(
self: PinMut<SplitStream<S>>,
cx: &mut Context
) -> Poll<Option<<S as Stream>::Item>>
Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None
if the stream is exhausted. Read more
Auto Trait Implementations
impl<S> Send for SplitStream<S> where
S: Send,
impl<S> Send for SplitStream<S> where
S: Send,
impl<S> Sync for SplitStream<S> where
S: Send,
impl<S> Sync for SplitStream<S> where
S: Send,