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