Struct ErrInto
struct ErrInto<Fut, E> { ... }
Future for the err_into method.
Implementations
impl<'__pin, Fut, E> Unpin for ErrInto<Fut, E>
impl<F> IntoFuture for ErrInto<Fut, E>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<F, T, E> TryFuture for ErrInto<Fut, E>
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>
impl<Fut> TryFutureExt for ErrInto<Fut, E>
impl<Fut, E> Debug for ErrInto<Fut, E>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<Fut, E> Freeze for ErrInto<Fut, E>
impl<Fut, E> FusedFuture for ErrInto<Fut, E>
fn is_terminated(self: &Self) -> bool
impl<Fut, E> Future for ErrInto<Fut, E>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>
impl<Fut, E> RefUnwindSafe for ErrInto<Fut, E>
impl<Fut, E> Send for ErrInto<Fut, E>
impl<Fut, E> Sync for ErrInto<Fut, E>
impl<Fut, E> UnsafeUnpin for ErrInto<Fut, E>
impl<Fut, E> UnwindSafe for ErrInto<Fut, E>
impl<T> Any for ErrInto<Fut, E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ErrInto<Fut, E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ErrInto<Fut, E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ErrInto<Fut, E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for ErrInto<Fut, E>
impl<T, U> Into for ErrInto<Fut, E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ErrInto<Fut, E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ErrInto<Fut, E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>