Struct MapInto

struct MapInto<Fut, T> { ... }

Future for the map_into combinator.

Implementations

impl<'__pin, Fut, T> Unpin for MapInto<Fut, T>

impl<F> IntoFuture for MapInto<Fut, T>

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

impl<F, T, E> TryFuture for MapInto<Fut, T>

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

impl<Fut> TryFutureExt for MapInto<Fut, T>

impl<Fut, T> Debug for MapInto<Fut, T>

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

impl<Fut, T> Freeze for MapInto<Fut, T>

impl<Fut, T> FusedFuture for MapInto<Fut, T>

fn is_terminated(self: &Self) -> bool

impl<Fut, T> Future for MapInto<Fut, T>

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

impl<Fut, T> RefUnwindSafe for MapInto<Fut, T>

impl<Fut, T> Send for MapInto<Fut, T>

impl<Fut, T> Sync for MapInto<Fut, T>

impl<Fut, T> UnsafeUnpin for MapInto<Fut, T>

impl<Fut, T> UnwindSafe for MapInto<Fut, T>

impl<T> Any for MapInto<Fut, T>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for MapInto<Fut, T>

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

impl<T> BorrowMut for MapInto<Fut, T>

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

impl<T> From for MapInto<Fut, T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for MapInto<Fut, T>

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

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 MapInto<Fut, T>

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

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

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