Struct NeverError
struct NeverError<Fut> { ... }
Future for the never_error combinator.
Implementations
impl<'__pin, Fut> Unpin for NeverError<Fut>
impl<F> IntoFuture for NeverError<Fut>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<F, T, E> TryFuture for NeverError<Fut>
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>
impl<Fut> Debug for NeverError<Fut>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<Fut> Freeze for NeverError<Fut>
impl<Fut> FusedFuture for NeverError<Fut>
fn is_terminated(self: &Self) -> bool
impl<Fut> Future for NeverError<Fut>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>
impl<Fut> RefUnwindSafe for NeverError<Fut>
impl<Fut> Send for NeverError<Fut>
impl<Fut> Sync for NeverError<Fut>
impl<Fut> TryFutureExt for NeverError<Fut>
impl<Fut> UnsafeUnpin for NeverError<Fut>
impl<Fut> UnwindSafe for NeverError<Fut>
impl<T> Any for NeverError<Fut>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for NeverError<Fut>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for NeverError<Fut>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for NeverError<Fut>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for NeverError<Fut>
impl<T, U> Into for NeverError<Fut>
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 NeverError<Fut>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for NeverError<Fut>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>