Struct futures_util::stream::Chunks [−][src]
An adaptor that chunks up elements in a vector.
This adaptor will buffer up a list of items in the stream and pass on the
vector used for buffering when a specified capacity has been reached. This
is created by the Stream::chunks
method.
Methods
impl<St: Stream> Chunks<St> where
St: Stream,
[src]
[−]
impl<St: Stream> Chunks<St> where
St: Stream,
ⓘImportant traits for &'a mut Rpub fn get_ref(&self) -> &St
[src]
[−]
ⓘImportant traits for &'a mut R
pub fn get_ref(&self) -> &St
Acquires a reference to the underlying stream that this combinator is pulling from.
ⓘImportant traits for &'a mut Rpub fn get_mut(&mut self) -> &mut St
[src]
[−]
ⓘImportant traits for &'a mut R
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 + Stream> Debug for Chunks<St> where
St::Item: Debug,
[src]
[+]
impl<St: Debug + Stream> Debug for Chunks<St> where
St::Item: Debug,
impl<St: Unpin + Stream> Unpin for Chunks<St>
[src]
impl<St: Unpin + Stream> Unpin for Chunks<St>
impl<St: Stream> Stream for Chunks<St>
[src]
[+]
impl<St: Stream> Stream for Chunks<St>