[−][src]Struct tokio::prelude::stream::Flatten
A combinator used to flatten a stream-of-streams into one long stream of elements.
This combinator is created by the Stream::flatten
method.
Implementations
impl<S> Flatten<S> where
S: Stream,
[src][−]
S: Stream,
pub fn get_ref(&self) -> &S
[src][−]
Acquires a reference to the underlying stream that this combinator is pulling from.
pub fn get_mut(&mut self) -> &mut S
[src][−]
Acquires a mutable reference to the underlying stream that this combinator is pulling from.
Note that care must be taken to avoid tampering with the state of the stream which may otherwise confuse this combinator.
pub fn into_inner(self) -> S
[src][−]
Consumes this combinator, returning the underlying stream.
Note that this may discard intermediate state of this combinator, so care should be taken to avoid losing resources when this is called.
Trait Implementations
impl<S> Debug for Flatten<S> where
S: Debug + Stream,
<S as Stream>::Item: Debug,
[src][+]
S: Debug + Stream,
<S as Stream>::Item: Debug,
impl<S> Sink for Flatten<S> where
S: Sink + Stream,
[src][+]
S: Sink + Stream,
impl<S> Stream for Flatten<S> where
S: Stream,
<S as Stream>::Item: Stream,
<<S as Stream>::Item as Stream>::Error: From<<S as Stream>::Error>,
[src][+]
S: Stream,
<S as Stream>::Item: Stream,
<<S as Stream>::Item as Stream>::Error: From<<S as Stream>::Error>,
Auto Trait Implementations
impl<S> RefUnwindSafe for Flatten<S> where
S: RefUnwindSafe,
<S as Stream>::Item: RefUnwindSafe,
S: RefUnwindSafe,
<S as Stream>::Item: RefUnwindSafe,
impl<S> Send for Flatten<S> where
S: Send,
<S as Stream>::Item: Send,
S: Send,
<S as Stream>::Item: Send,
impl<S> Sync for Flatten<S> where
S: Sync,
<S as Stream>::Item: Sync,
S: Sync,
<S as Stream>::Item: Sync,
impl<S> Unpin for Flatten<S> where
S: Unpin,
<S as Stream>::Item: Unpin,
S: Unpin,
<S as Stream>::Item: Unpin,
impl<S> UnwindSafe for Flatten<S> where
S: UnwindSafe,
<S as Stream>::Item: UnwindSafe,
S: UnwindSafe,
<S as Stream>::Item: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,