Struct futures_util::stream::SplitStream [−][src]
#[must_use = "streams do nothing unless polled"]pub struct SplitStream<S>(_);
This is supported on crate feature
sink only.Expand description
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]
pub fn reunite<Item>(
self,
other: SplitSink<S, Item>
) -> Result<S, ReuniteError<S, Item>> where
S: Sink<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 StreamExt::split.
Trait Implementations
impl<S: Debug> Debug for SplitStream<S>[src]
impl<S: Debug> Debug for SplitStream<S>[src]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,
impl<S> !UnwindSafe for SplitStream<S>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more