Struct futures::stream::Chunks[][src]

#[must_use = "streams do nothing unless polled"]
pub struct Chunks<St> where
    St: Stream
{ /* fields omitted */ }

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> Chunks<St> where
    St: Stream + Stream
[src]

Important traits for &'a mut I

Acquires a reference to the underlying stream that this combinator is pulling from.

Important traits for &'a mut I

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.

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> Unpin for Chunks<St> where
    St: Unpin + Stream
[src]

impl<St> Debug for Chunks<St> where
    St: Debug + Stream,
    <St as Stream>::Item: Debug
[src]

Formats the value using the given formatter. Read more

impl<St> Stream for Chunks<St> where
    St: Stream
[src]

Values yielded by the stream.

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<St> Send for Chunks<St> where
    St: Send,
    <St as Stream>::Item: Send

impl<St> Sync for Chunks<St> where
    St: Sync,
    <St as Stream>::Item: Sync