Struct SelectAll

struct SelectAll<Fut> { ... }

Future for the select_all function.

Implementations

impl<Fut> SelectAll<Fut>

fn into_inner(self: Self) -> Vec<Fut>

Consumes this combinator, returning the underlying futures.

impl<F> IntoFuture for SelectAll<Fut>

fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture

impl<Fut> Freeze for SelectAll<Fut>

impl<Fut> RefUnwindSafe for SelectAll<Fut>

impl<Fut> Send for SelectAll<Fut>

impl<Fut> Sync for SelectAll<Fut>

impl<Fut> UnsafeUnpin for SelectAll<Fut>

impl<Fut> UnwindSafe for SelectAll<Fut>

impl<Fut: $crate::fmt::Debug> Debug for SelectAll<Fut>

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

impl<Fut: Future + Unpin> FromIterator for SelectAll<Fut>

fn from_iter<T: IntoIterator<Item = Fut>>(iter: T) -> Self

impl<Fut: Future + Unpin> Future for SelectAll<Fut>

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>

impl<Fut: Unpin> Unpin for SelectAll<Fut>

impl<T> Any for SelectAll<Fut>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for SelectAll<Fut>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for SelectAll<Fut>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for SelectAll<Fut>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for SelectAll<Fut>

impl<T, U> Into for SelectAll<Fut>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for SelectAll<Fut>

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

impl<T, U> TryInto for SelectAll<Fut>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>