Struct TryCollect

struct TryCollect<St, C> { ... }

Future for the try_collect method.

Implementations

impl<'__pin, St, C> Unpin for TryCollect<St, C>

impl<F> IntoFuture for TryCollect<St, C>

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

impl<F, T, E> TryFuture for TryCollect<St, C>

fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<Fut> TryFutureExt for TryCollect<St, C>

impl<St, C> Freeze for TryCollect<St, C>

impl<St, C> FusedFuture for TryCollect<St, C>

fn is_terminated(self: &Self) -> bool

impl<St, C> Future for TryCollect<St, C>

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

impl<St, C> RefUnwindSafe for TryCollect<St, C>

impl<St, C> Send for TryCollect<St, C>

impl<St, C> Sync for TryCollect<St, C>

impl<St, C> UnsafeUnpin for TryCollect<St, C>

impl<St, C> UnwindSafe for TryCollect<St, C>

impl<St: $crate::fmt::Debug, C: $crate::fmt::Debug> Debug for TryCollect<St, C>

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

impl<T> Any for TryCollect<St, C>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for TryCollect<St, C>

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

impl<T> BorrowMut for TryCollect<St, C>

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

impl<T> From for TryCollect<St, C>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for TryCollect<St, C>

impl<T, U> Into for TryCollect<St, C>

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 TryCollect<St, C>

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

impl<T, U> TryInto for TryCollect<St, C>

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