Struct Pending
struct Pending<T> { ... }
Future for the [pending()] function.
Implementations
impl<F> IntoFuture for Pending<T>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<F, T, E> TryFuture for Pending<T>
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>
impl<Fut> TryFutureExt for Pending<T>
impl<T> Any for Pending<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Pending<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Pending<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Clone for Pending<T>
fn clone(self: &Self) -> Self
impl<T> CloneToUninit for Pending<T>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> Freeze for Pending<T>
impl<T> From for Pending<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FusedFuture for Pending<T>
fn is_terminated(self: &Self) -> bool
impl<T> Future for Pending<T>
fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<T>
impl<T> FutureExt for Pending<T>
impl<T> RefUnwindSafe for Pending<T>
impl<T> Send for Pending<T>
impl<T> Sync for Pending<T>
impl<T> ToOwned for Pending<T>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T> Unpin for Pending<T>
impl<T> UnsafeUnpin for Pending<T>
impl<T> UnwindSafe for Pending<T>
impl<T, U> Into for Pending<T>
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 Pending<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Pending<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T: $crate::fmt::Debug> Debug for Pending<T>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result