Struct futures_util::stream::select_all::SelectAll[][src]

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

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.

Implementations

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

pub fn new() -> Self[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.

pub fn iter(&self) -> Iter<'_, St>

Notable traits for Iter<'a, St>

impl<'a, St: Stream + Unpin> Iterator for Iter<'a, St> type Item = &'a St;
[src]

Returns an iterator that allows inspecting each stream in the set.

pub fn iter_mut(&mut self) -> IterMut<'_, St>

Notable traits for IterMut<'a, St>

impl<'a, St: Stream + Unpin> Iterator for IterMut<'a, St> type Item = &'a mut St;
[src]

Returns an iterator that allows modifying each stream in the set.

pub fn clear(&mut self)[src]

Clears the set, removing all streams.

Trait Implementations

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

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn default() -> Self[src]

Returns the “default value” for a type. Read more

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

fn extend<T: IntoIterator<Item = St>>(&mut self, iter: T)[src]

Extends a collection with the contents of an iterator. Read more

fn extend_one(&mut self, item: A)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

fn extend_reserve(&mut self, additional: usize)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements. Read more

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

fn from_iter<T: IntoIterator<Item = St>>(iter: T) -> Self[src]

Creates a value from an iterator. Read more

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

fn is_terminated(&self) -> bool[src]

Returns true if the stream should no longer be polled.

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

type Item = St

The type of the elements being iterated over.

type IntoIter = IntoIter<St>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl<'a, St: Stream + Unpin> IntoIterator for &'a SelectAll<St>[src]

type Item = &'a St

The type of the elements being iterated over.

type IntoIter = Iter<'a, St>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl<'a, St: Stream + Unpin> IntoIterator for &'a mut SelectAll<St>[src]

type Item = &'a mut St

The type of the elements being iterated over.

type IntoIter = IterMut<'a, St>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

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

type Item = St::Item

Values yielded by the stream.

fn poll_next(
    self: Pin<&mut Self>,
    cx: &mut Context<'_>
) -> Poll<Option<Self::Item>>
[src]

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

fn size_hint(&self) -> (usize, Option<usize>)[src]

Returns the bounds on the remaining length of the stream. Read more

impl<'__pin, St> Unpin for SelectAll<St> where
    __Origin<'__pin, St>: Unpin
[src]

Auto Trait Implementations

impl<St> !RefUnwindSafe for SelectAll<St>

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

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

impl<St> !UnwindSafe for SelectAll<St>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn try_poll_next(
    self: Pin<&mut S>,
    cx: &mut Context<'_>
) -> Poll<Option<Result<<S as TryStream>::Ok, <S as TryStream>::Error>>>
[src]

Poll this TryStream as if it were a Stream. Read more