[][src]Struct futures::stream::SelectAll

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

An unbounded set of streams

This "combinator" provides the ability to maintain a set of streams and drive them all to completion.

Streams are pushed into this set and their realized values are yielded as they become ready. Streams will only be polled when they generate notifications. This allows to coordinate a large number of streams.

Note that you can create a ready-made SelectAll via the select_all function in the stream module, or you can start with an empty set with the SelectAll::new constructor.

Methods

impl<St> SelectAll<St> where
    St: Unpin + Stream
[src]

pub fn new() -> SelectAll<St>[src]

Constructs a new, empty SelectAll

The returned SelectAll does not contain any streams and, in this state, SelectAll::poll will return Poll::Ready(None).

pub fn len(&self) -> usize[src]

Returns the number of streams contained in the set.

This represents the total number of in-flight streams.

pub fn is_empty(&self) -> bool[src]

Returns true if the set contains no streams

pub fn push(&mut self, stream: St)[src]

Push a stream into the set.

This function submits the given stream to the set for managing. This function will not call poll on the submitted stream. The caller must ensure that SelectAll::poll is called in order to receive task notifications.

Trait Implementations

impl<St> FromIterator<St> for SelectAll<St> where
    St: Unpin + Stream
[src]

impl<St> Default for SelectAll<St> where
    St: Unpin + Stream
[src]

impl<St> Stream for SelectAll<St> where
    St: Unpin + Stream
[src]

type Item = <St as Stream>::Item

Values yielded by the stream.

impl<St> FusedStream for SelectAll<St> where
    St: Unpin + Stream
[src]

impl<St> Debug for SelectAll<St> where
    St: Debug
[src]

Auto Trait Implementations

impl<St> Send for SelectAll<St> where
    St: Send

impl<St> Unpin for SelectAll<St>

impl<St> Sync for SelectAll<St> where
    St: Sync

impl<St> !UnwindSafe for SelectAll<St>

impl<St> !RefUnwindSafe for SelectAll<St>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<T> StreamExt for T where
    T: Stream + ?Sized
[src]

impl<S> TryStreamExt for S where
    S: TryStream + ?Sized
[src]