[−][src]Struct futures_util::try_stream::TryBufferUnordered
A stream returned by the
try_buffer_unordered
method
Methods
impl<St> TryBufferUnordered<St> where
St: TryStream,
St::Ok: TryFuture,
[src]
[−]
impl<St> TryBufferUnordered<St> where
St: TryStream,
St::Ok: TryFuture,
ⓘImportant traits for &'a mut Wpub fn get_ref(&self) -> &St
[src]
[−]
ⓘImportant traits for &'a mut W
pub fn get_ref(&self) -> &St
Acquires a reference to the underlying stream that this combinator is pulling from.
ⓘImportant traits for &'a mut Wpub fn get_mut(&mut self) -> &mut St
[src]
[−]
ⓘImportant traits for &'a mut W
pub fn get_mut(&mut self) -> &mut St
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) -> St
[src]
[−]
pub fn into_inner(self) -> St
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<St: Debug> Debug for TryBufferUnordered<St> where
St: TryStream,
St::Ok: Debug,
[src]
[+]
impl<St: Debug> Debug for TryBufferUnordered<St> where
St: TryStream,
St::Ok: Debug,
impl<St> Unpin for TryBufferUnordered<St> where
St: TryStream + Unpin,
[src]
impl<St> Unpin for TryBufferUnordered<St> where
St: TryStream + Unpin,
impl<St> Stream for TryBufferUnordered<St> where
St: TryStream,
St::Ok: TryFuture<Error = St::Error>,
[src]
[+]
impl<St> Stream for TryBufferUnordered<St> where
St: TryStream,
St::Ok: TryFuture<Error = St::Error>,