Struct futures_util::future::Pending [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct Pending<T> { /* fields omitted */ }
Future for the pending()
function.
Trait Implementations
impl<T> Clone for Pending<T>
[src]
impl<T> Clone for Pending<T>
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> FusedFuture for Pending<T>
[src]
impl<T> FusedFuture for Pending<T>
[src]fn is_terminated(&self) -> bool
[src]
impl<T> Unpin for Pending<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Pending<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Pending<T> where
T: Send,
T: Send,
impl<T> Sync for Pending<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for Pending<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?