Struct futures_util::stream::FuturesUnordered[][src]

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

A set of futures which may complete in any order.

This structure is optimized to manage a large number of futures. Futures managed by FuturesUnordered will only be polled when they generate wake-up notifications. This reduces the required amount of work needed to poll large numbers of futures.

FuturesUnordered can be filled by collecting an iterator of futures into a FuturesUnordered, or by pushing futures onto an existing FuturesUnordered. When new futures are added, poll_next must be called in order to begin receiving wake-ups for new futures.

Note that you can create a ready-made FuturesUnordered via the collect method, or you can start with an empty set with the FuturesUnordered::new constructor.

This type is only available when the std or alloc feature of this library is activated, and it is activated by default.

Implementations

impl<Fut> FuturesUnordered<Fut>[src]

pub fn new() -> Self[src]

Constructs a new, empty FuturesUnordered.

The returned FuturesUnordered does not contain any futures. In this state, FuturesUnordered::poll_next will return Poll::Ready(None).

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

Returns the number of futures contained in the set.

This represents the total number of in-flight futures.

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

Returns true if the set contains no futures.

pub fn push(&self, future: Fut)[src]

Push a future into the set.

This method adds the given future to the set. This method will not call poll on the submitted future. The caller must ensure that FuturesUnordered::poll_next is called in order to receive wake-up notifications for the given future.

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

Notable traits for Iter<'a, Fut>

impl<'a, Fut: Unpin> Iterator for Iter<'a, Fut> type Item = &'a Fut;
where
    Fut: Unpin
[src]

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

pub fn iter_pin_ref(self: Pin<&Self>) -> IterPinRef<'_, Fut>

Notable traits for IterPinRef<'a, Fut>

impl<'a, Fut> Iterator for IterPinRef<'a, Fut> type Item = Pin<&'a Fut>;
[src]

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

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

Notable traits for IterMut<'a, Fut>

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

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

pub fn iter_pin_mut(self: Pin<&mut Self>) -> IterPinMut<'_, Fut>

Notable traits for IterPinMut<'a, Fut>

impl<'a, Fut> Iterator for IterPinMut<'a, Fut> type Item = Pin<&'a mut Fut>;
[src]

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

impl<Fut> FuturesUnordered<Fut>[src]

pub fn clear(&mut self)[src]

Clears the set, removing all futures.

Trait Implementations

impl<Fut> Debug for FuturesUnordered<Fut>[src]

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

Formats the value using the given formatter. Read more

impl<Fut> Default for FuturesUnordered<Fut>[src]

fn default() -> Self[src]

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

impl<Fut> Drop for FuturesUnordered<Fut>[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<Fut> Extend<Fut> for FuturesUnordered<Fut>[src]

fn extend<I>(&mut self, iter: I) where
    I: IntoIterator<Item = Fut>, 
[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<Fut> FromIterator<Fut> for FuturesUnordered<Fut>[src]

fn from_iter<I>(iter: I) -> Self where
    I: IntoIterator<Item = Fut>, 
[src]

Creates a value from an iterator. Read more

impl<Fut: Future> FusedStream for FuturesUnordered<Fut>[src]

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

Returns true if the stream should no longer be polled.

impl<'a, Fut: Unpin> IntoIterator for &'a FuturesUnordered<Fut>[src]

type Item = &'a Fut

The type of the elements being iterated over.

type IntoIter = Iter<'a, Fut>

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, Fut: Unpin> IntoIterator for &'a mut FuturesUnordered<Fut>[src]

type Item = &'a mut Fut

The type of the elements being iterated over.

type IntoIter = IterMut<'a, Fut>

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<Fut: Unpin> IntoIterator for FuturesUnordered<Fut>[src]

type Item = Fut

The type of the elements being iterated over.

type IntoIter = IntoIter<Fut>

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 LocalSpawn for FuturesUnordered<LocalFutureObj<'_, ()>>[src]

fn spawn_local_obj(
    &self,
    future_obj: LocalFutureObj<'static, ()>
) -> Result<(), SpawnError>
[src]

Spawns a future that will be run to completion. Read more

fn status_local(&self) -> Result<(), SpawnError>[src]

Determines whether the executor is able to spawn new tasks. Read more

impl Spawn for FuturesUnordered<FutureObj<'_, ()>>[src]

fn spawn_obj(
    &self,
    future_obj: FutureObj<'static, ()>
) -> Result<(), SpawnError>
[src]

Spawns a future that will be run to completion. Read more

fn status(&self) -> Result<(), SpawnError>[src]

Determines whether the executor is able to spawn new tasks. Read more

impl<Fut: Future> Stream for FuturesUnordered<Fut>[src]

type Item = Fut::Output

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<Fut: Send> Send for FuturesUnordered<Fut>[src]

impl<Fut: Sync> Sync for FuturesUnordered<Fut>[src]

impl<Fut> Unpin for FuturesUnordered<Fut>[src]

Auto Trait Implementations

impl<Fut> !RefUnwindSafe for FuturesUnordered<Fut>

impl<Fut> !UnwindSafe for FuturesUnordered<Fut>

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