Trait futures::future::Future

1.36.0 · source · []
pub trait Future {
    type Output;
    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>;
}
Expand description

A future represents an asynchronous computation obtained by use of async.

A future is a value that might not have finished computing yet. This kind of “asynchronous value” makes it possible for a thread to continue doing useful work while it waits for the value to become available.

The poll method

The core method of future, poll, attempts to resolve the future into a final value. This method does not block if the value is not ready. Instead, the current task is scheduled to be woken up when it’s possible to make further progress by polling again. The context passed to the poll method can provide a Waker, which is a handle for waking up the current task.

When using a future, you generally won’t call poll directly, but instead .await the value.

Associated Types

The type of value produced on completion.

Required methods

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available.

Return value

This function returns:

Once a future has finished, clients should not poll it again.

When a future is not ready yet, poll returns Poll::Pending and stores a clone of the Waker copied from the current Context. This Waker is then woken once the future can make progress. For example, a future waiting for a socket to become readable would call .clone() on the Waker and store it. When a signal arrives elsewhere indicating that the socket is readable, Waker::wake is called and the socket future’s task is awoken. Once a task has been woken up, it should attempt to poll the future again, which may or may not produce a final value.

Note that on multiple calls to poll, only the Waker from the Context passed to the most recent call should be scheduled to receive a wakeup.

Runtime characteristics

Futures alone are inert; they must be actively polled to make progress, meaning that each time the current task is woken up, it should actively re-poll pending futures that it still has an interest in.

The poll function is not called repeatedly in a tight loop – instead, it should only be called when the future indicates that it is ready to make progress (by calling wake()). If you’re familiar with the poll(2) or select(2) syscalls on Unix it’s worth noting that futures typically do not suffer the same problems of “all wakeups must poll all events”; they are more like epoll(4).

An implementation of poll should strive to return quickly, and should not block. Returning quickly prevents unnecessarily clogging up threads or event loops. If it is known ahead of time that a call to poll may end up taking awhile, the work should be offloaded to a thread pool (or something similar) to ensure that poll can return quickly.

Panics

Once a future has completed (returned Ready from poll), calling its poll method again may panic, block forever, or cause other kinds of problems; the Future trait places no requirements on the effects of such a call. However, as the poll method is not marked unsafe, Rust’s usual rules apply: calls must never cause undefined behavior (memory corruption, incorrect use of unsafe functions, or the like), regardless of the future’s state.

Trait Implementations

Convert an owned instance into a (conceptually owned) fat pointer. Read more

Drops the future represented by the given fat pointer. Read more

Implementations on Foreign Types

Implementors

impl<'a, T> Future for Send<'a, T>

impl<'a, T> Future for Recv<'a, T>

impl<T> Future for Readable<'_, T>

impl<T> Future for ReadableOwned<T>

impl<T> Future for Writable<'_, T>

impl<T> Future for WritableOwned<T>

impl Future for Timer

impl<T> Future for Task<T>

impl Future for Exit

impl<H, N, E: Environment<H, N>, GlobalIn, GlobalOut> Future for Voter<H, N, E, GlobalIn, GlobalOut> where
    H: Clone + Eq + Ord + Debug,
    N: Copy + BlockNumberOps + Debug,
    GlobalIn: Stream<Item = Result<CommunicationIn<H, N, E::Signature, E::Id>, E::Error>> + Unpin,
    GlobalOut: Sink<CommunicationOut<H, N, E::Signature, E::Id>, Error = E::Error> + Unpin

impl<T> Future for Cancellation<'_, T>

impl<T> Future for Receiver<T>

impl<T> Future for DiagnoseFuture<T> where
    T: Future

impl<T> Future for Pending<T>

impl<T, F> Future for PollOnce<F> where
    F: Future<Output = T>, 

impl<T, F> Future for PollFn<F> where
    F: FnMut(&mut Context<'_>) -> Poll<T>, 

impl<T> Future for Ready<T>

impl Future for YieldNow

impl<F1, F2> Future for Zip<F1, F2> where
    F1: Future,
    F2: Future

impl<T1, T2, E, F1, F2> Future for TryZip<F1, F2> where
    F1: Future<Output = Result<T1, E>>,
    F2: Future<Output = Result<T2, E>>, 

impl<T, F1, F2> Future for Or<F1, F2> where
    F1: Future<Output = T>,
    F2: Future<Output = T>, 

impl<T, F1, F2> Future for Race<F1, F2> where
    F1: Future<Output = T>,
    F2: Future<Output = T>, 

impl<F: Future + UnwindSafe> Future for CatchUnwind<F>

impl<S: Stream + Unpin + ?Sized> Future for NextFuture<'_, S>

impl<T, E, S> Future for TryNextFuture<'_, S> where
    S: Stream<Item = Result<T, E>> + Unpin + ?Sized

impl<S: Stream + ?Sized> Future for CountFuture<S>

impl<S, C> Future for CollectFuture<S, C> where
    S: Stream,
    C: Default + Extend<S::Item>, 

impl<T, E, S, C> Future for TryCollectFuture<S, C> where
    S: Stream<Item = Result<T, E>>,
    C: Default + Extend<T>, 

impl<S, P, B> Future for PartitionFuture<S, P, B> where
    S: Stream + Sized,
    P: FnMut(&S::Item) -> bool,
    B: Default + Extend<S::Item>, 

impl<S, F, T> Future for FoldFuture<S, F, T> where
    S: Stream,
    F: FnMut(T, S::Item) -> T, 

impl<'a, T, E, S, F, B> Future for TryFoldFuture<'a, S, F, B> where
    S: Stream<Item = Result<T, E>> + Unpin,
    F: FnMut(B, T) -> Result<B, E>, 

impl<'a, S> Future for NthFuture<'a, S> where
    S: Stream + Unpin + ?Sized

impl<S: Stream> Future for LastFuture<S>

impl<'a, S, P> Future for FindFuture<'a, S, P> where
    S: Stream + Unpin + ?Sized,
    P: FnMut(&S::Item) -> bool

impl<'a, S, B, F> Future for FindMapFuture<'a, S, F> where
    S: Stream + Unpin + ?Sized,
    F: FnMut(S::Item) -> Option<B>, 

impl<'a, S, P> Future for PositionFuture<'a, S, P> where
    S: Stream + Unpin + ?Sized,
    P: FnMut(S::Item) -> bool

impl<S, P> Future for AllFuture<'_, S, P> where
    S: Stream + Unpin + ?Sized,
    P: FnMut(S::Item) -> bool

impl<S, P> Future for AnyFuture<'_, S, P> where
    S: Stream + Unpin + ?Sized,
    P: FnMut(S::Item) -> bool

impl<S, F> Future for ForEachFuture<S, F> where
    S: Stream,
    F: FnMut(S::Item), 

impl<'a, S, F, E> Future for TryForEachFuture<'a, S, F> where
    S: Stream + Unpin + ?Sized,
    F: FnMut(S::Item) -> Result<(), E>, 

impl<S, A, B, FromA, FromB> Future for UnzipFuture<S, FromA, FromB> where
    S: Stream<Item = (A, B)>,
    FromA: Default + Extend<A>,
    FromB: Default + Extend<B>, 

impl<'a, R> Future for FillBuf<'a, R> where
    R: AsyncBufRead + Unpin + ?Sized

impl<R: AsyncBufRead + Unpin + ?Sized> Future for ReadUntilFuture<'_, R>

impl<R: AsyncBufRead + Unpin + ?Sized> Future for ReadLineFuture<'_, R>

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadFuture<'_, R>

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadVectoredFuture<'_, R>

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadToEndFuture<'_, R>

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadToStringFuture<'_, R>

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadExactFuture<'_, R>

impl<S: AsyncSeek + Unpin + ?Sized> Future for SeekFuture<'_, S>

impl<W: AsyncWrite + Unpin + ?Sized> Future for WriteFuture<'_, W>

impl<W: AsyncWrite + Unpin + ?Sized> Future for WriteVectoredFuture<'_, W>

impl<W: AsyncWrite + Unpin + ?Sized> Future for WriteAllFuture<'_, W>

impl<W: AsyncWrite + Unpin + ?Sized> Future for FlushFuture<'_, W>

impl<W: AsyncWrite + Unpin + ?Sized> Future for CloseFuture<'_, W>

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Connect<IO>

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Accept<IO>

impl<T> Future for LocalFutureObj<'_, T>

impl<T> Future for FutureObj<'_, T>

impl Future for Delay

impl<Fut: Future> Future for Fuse<Fut>

impl<F> Future for Flatten<F> where
    Flatten<F, <F as Future>::Output>: Future,
    F: Future

impl<Fut, F> Future for Map<Fut, F> where
    Map<Fut, F>: Future

impl<Fut, T> Future for MapInto<Fut, T> where
    Map<Fut, IntoFn<T>>: Future

impl<Fut1, Fut2, F> Future for Then<Fut1, Fut2, F> where
    Flatten<Map<Fut1, F>, Fut2>: Future

impl<Fut, F> Future for Inspect<Fut, F> where
    Map<Fut, InspectFn<F>>: Future

impl<Fut> Future for NeverError<Fut> where
    Map<Fut, OkFn<Never>>: Future

impl<Fut> Future for UnitError<Fut> where
    Map<Fut, OkFn<()>>: Future

impl<Fut> Future for CatchUnwind<Fut> where
    Fut: Future + UnwindSafe

impl<T: 'static> Future for RemoteHandle<T>

impl<Fut: Future> Future for Remote<Fut>

impl<Fut> Future for Shared<Fut> where
    Fut: Future,
    Fut::Output: Clone

impl<Fut: TryFuture> Future for IntoFuture<Fut>

impl<Fut1, Fut2> Future for TryFlatten<Fut1, Fut2> where
    TryFlatten<Fut1, Fut2>: Future

impl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F> where
    TryFlatten<MapOk<Fut1, F>, Fut2>: Future

impl<Fut1, Fut2, F> Future for OrElse<Fut1, Fut2, F> where
    TryFlattenErr<MapErr<Fut1, F>, Fut2>: Future

impl<Fut, E> Future for ErrInto<Fut, E> where
    MapErr<Fut, IntoFn<E>>: Future

impl<Fut, E> Future for OkInto<Fut, E> where
    MapOk<Fut, IntoFn<E>>: Future

impl<Fut, F> Future for InspectOk<Fut, F> where
    Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Future

impl<Fut, F> Future for InspectErr<Fut, F> where
    Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Future

impl<Fut, F> Future for MapOk<Fut, F> where
    Map<IntoFuture<Fut>, MapOkFn<F>>: Future

impl<Fut, F> Future for MapErr<Fut, F> where
    Map<IntoFuture<Fut>, MapErrFn<F>>: Future

impl<Fut, F, G> Future for MapOkOrElse<Fut, F, G> where
    Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Future

impl<Fut, F> Future for UnwrapOrElse<Fut, F> where
    Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Future

impl<F, R> Future for Lazy<F> where
    F: FnOnce(&mut Context<'_>) -> R, 

impl<T> Future for Pending<T>

impl<Fut: Future> Future for MaybeDone<Fut>

impl<Fut: TryFuture> Future for TryMaybeDone<Fut>

impl<F: Future> Future for OptionFuture<F>

impl<T, F> Future for PollFn<F> where
    F: FnMut(&mut Context<'_>) -> Poll<T>, 

impl<T> Future for Ready<T>

impl<Fut1: Future, Fut2: Future> Future for Join<Fut1, Fut2>

impl<Fut1: Future, Fut2: Future, Fut3: Future> Future for Join3<Fut1, Fut2, Fut3>

impl<Fut1: Future, Fut2: Future, Fut3: Future, Fut4: Future> Future for Join4<Fut1, Fut2, Fut3, Fut4>

impl<Fut1: Future, Fut2: Future, Fut3: Future, Fut4: Future, Fut5: Future> Future for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>

impl<F> Future for JoinAll<F> where
    F: Future

impl<A, B> Future for Select<A, B> where
    A: Future + Unpin,
    B: Future + Unpin

impl<Fut: Future + Unpin> Future for SelectAll<Fut>

impl<Fut1, Fut2> Future for TryJoin<Fut1, Fut2> where
    Fut1: TryFuture,
    Fut2: TryFuture<Error = Fut1::Error>, 

impl<Fut1, Fut2, Fut3> Future for TryJoin3<Fut1, Fut2, Fut3> where
    Fut1: TryFuture,
    Fut2: TryFuture<Error = Fut1::Error>,
    Fut3: TryFuture<Error = Fut1::Error>, 

impl<Fut1, Fut2, Fut3, Fut4> Future for TryJoin4<Fut1, Fut2, Fut3, Fut4> where
    Fut1: TryFuture,
    Fut2: TryFuture<Error = Fut1::Error>,
    Fut3: TryFuture<Error = Fut1::Error>,
    Fut4: TryFuture<Error = Fut1::Error>, 

impl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
    Fut1: TryFuture,
    Fut2: TryFuture<Error = Fut1::Error>,
    Fut3: TryFuture<Error = Fut1::Error>,
    Fut4: TryFuture<Error = Fut1::Error>,
    Fut5: TryFuture<Error = Fut1::Error>, 

impl<F> Future for TryJoinAll<F> where
    F: TryFuture

impl<A: Unpin, B: Unpin> Future for TrySelect<A, B> where
    A: TryFuture,
    B: TryFuture

impl<Fut: TryFuture + Unpin> Future for SelectOk<Fut>

impl<A, B> Future for Either<A, B> where
    A: Future,
    B: Future<Output = A::Output>, 

impl<St, C> Future for Collect<St, C> where
    St: Stream,
    C: Default + Extend<St::Item>, 

impl<St, A, B, FromA, FromB> Future for Unzip<St, FromA, FromB> where
    St: Stream<Item = (A, B)>,
    FromA: Default + Extend<A>,
    FromB: Default + Extend<B>, 

impl<St> Future for Concat<St> where
    St: Stream,
    St::Item: Extend<<St::Item as IntoIterator>::Item> + IntoIterator + Default

impl<St, Fut, T, F> Future for Fold<St, Fut, T, F> where
    St: Stream,
    F: FnMut(T, St::Item) -> Fut,
    Fut: Future<Output = T>, 

impl<St, Si> Future for Forward<St, Si> where
    Forward<St, Si, St::Ok>: Future,
    St: TryStream

impl<St, Fut, F> Future for ForEach<St, Fut, F> where
    St: Stream,
    F: FnMut(St::Item) -> Fut,
    Fut: Future<Output = ()>, 

impl<St: Stream + Unpin> Future for StreamFuture<St>

impl<St: ?Sized + Stream + Unpin> Future for Next<'_, St>

impl<St: ?Sized + FusedStream + Unpin> Future for SelectNextSome<'_, St>

impl<'a, St> Future for Peek<'a, St> where
    St: Stream

impl<St, F> Future for NextIf<'_, St, F> where
    St: Stream,
    F: for<'a> FnOnce1<&'a St::Item, Output = bool>, 

impl<St, T> Future for NextIfEq<'_, St, T> where
    St: Stream,
    T: ?Sized,
    St::Item: PartialEq<T>, 

impl<St, Fut, F> Future for ForEachConcurrent<St, Fut, F> where
    St: Stream,
    F: FnMut(St::Item) -> Fut,
    Fut: Future<Output = ()>, 

impl<St: ?Sized + TryStream + Unpin> Future for TryNext<'_, St>

impl<St, Fut, F> Future for TryForEach<St, Fut, F> where
    St: TryStream,
    F: FnMut(St::Ok) -> Fut,
    Fut: TryFuture<Ok = (), Error = St::Error>, 

impl<St, C> Future for TryCollect<St, C> where
    St: TryStream,
    C: Default + Extend<St::Ok>, 

impl<St> Future for TryConcat<St> where
    St: TryStream,
    St::Ok: Extend<<St::Ok as IntoIterator>::Item> + IntoIterator + Default

impl<St, Fut, T, F> Future for TryFold<St, Fut, T, F> where
    St: TryStream,
    F: FnMut(T, St::Ok) -> Fut,
    Fut: TryFuture<Ok = T, Error = St::Error>, 

impl<St, Fut, F> Future for TryForEachConcurrent<St, Fut, F> where
    St: TryStream,
    F: FnMut(St::Ok) -> Fut,
    Fut: Future<Output = Result<(), St::Error>>, 

impl<Si: Sink<Item> + Unpin + ?Sized, Item> Future for Close<'_, Si, Item>

impl<Si: Sink<Item> + Unpin + ?Sized, Item> Future for Feed<'_, Si, Item>

impl<Si: Sink<Item> + Unpin + ?Sized, Item> Future for Flush<'_, Si, Item>

impl<Si: Sink<Item> + Unpin + ?Sized, Item> Future for Send<'_, Si, Item>

impl<Si, St, Ok, Error> Future for SendAll<'_, Si, St> where
    Si: Sink<Ok, Error = Error> + Unpin + ?Sized,
    St: Stream<Item = Result<Ok, Error>> + Unpin + ?Sized

impl<Fut: Future01> Future for Compat01As03<Fut>

impl<W: AsyncWrite + ?Sized + Unpin> Future for Close<'_, W>

impl<R: AsyncRead, W: AsyncWrite + Unpin + ?Sized> Future for Copy<'_, R, W>

impl<R, W> Future for CopyBuf<'_, R, W> where
    R: AsyncBufRead,
    W: AsyncWrite + Unpin + ?Sized

impl<'a, R> Future for FillBuf<'a, R> where
    R: AsyncBufRead + ?Sized + Unpin

impl<W> Future for Flush<'_, W> where
    W: AsyncWrite + ?Sized + Unpin

impl<R: AsyncRead + ?Sized + Unpin> Future for Read<'_, R>

impl<R: AsyncRead + ?Sized + Unpin> Future for ReadVectored<'_, R>

impl<R: AsyncRead + ?Sized + Unpin> Future for ReadExact<'_, R>

impl<R: AsyncBufRead + ?Sized + Unpin> Future for ReadLine<'_, R>

impl<A> Future for ReadToEnd<'_, A> where
    A: AsyncRead + ?Sized + Unpin

impl<A> Future for ReadToString<'_, A> where
    A: AsyncRead + ?Sized + Unpin

impl<R: AsyncBufRead + ?Sized + Unpin> Future for ReadUntil<'_, R>

impl<S: AsyncSeek + ?Sized + Unpin> Future for Seek<'_, S>

impl<W: AsyncWrite + ?Sized + Unpin> Future for Write<'_, W>

impl<W: AsyncWrite + ?Sized + Unpin> Future for WriteVectored<'_, W>

impl<W: AsyncWrite + ?Sized + Unpin> Future for WriteAll<'_, W>

impl<'a, T: ?Sized> Future for MutexLockFuture<'a, T>

impl<'a, T> Future for BiLockAcquire<'a, T>

impl<Fut> Future for Abortable<Fut> where
    Fut: Future

impl<B> Future for ReadySendRequest<B> where
    B: Buf + 'static, 

impl<T, B> Future for Connection<T, B> where
    T: AsyncRead + AsyncWrite + Unpin,
    B: Buf + 'static, 

impl<T, B: Buf> Future for Handshake<T, B> where
    T: AsyncRead + AsyncWrite + Unpin,
    B: Buf + 'static, 

impl<'a, T: Body + Unpin + ?Sized> Future for Data<'a, T>

impl<'a, T: Body + Unpin + ?Sized> Future for Trailers<'a, T>

impl<T, B> Future for Connection<T, B> where
    T: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    B: HttpBody + Send + 'static,
    B::Data: Send,
    B::Error: Into<Box<dyn StdError + Send + Sync>>, 

impl Future for GaiFuture

impl<I, B, S, E> Future for Connection<I, S, E> where
    S: HttpService<Body, ResBody = B>,
    S::Error: Into<Box<dyn StdError + Send + Sync>>,
    I: AsyncRead + AsyncWrite + Unpin + 'static,
    B: HttpBody + 'static,
    B::Error: Into<Box<dyn StdError + Send + Sync>>,
    E: H2Exec<S::Future, B>, 

impl<I, F, S, FE, E, B> Future for Connecting<I, F, E> where
    I: AsyncRead + AsyncWrite + Unpin,
    F: Future<Output = Result<S, FE>>,
    S: HttpService<Body, ResBody = B>,
    B: HttpBody + 'static,
    B::Error: Into<Box<dyn StdError + Send + Sync>>,
    E: H2Exec<S::Future, B>, 

impl<I, IO, IE, S, B, E> Future for Server<I, S, E> where
    I: Accept<Conn = IO, Error = IE>,
    IE: Into<Box<dyn StdError + Send + Sync>>,
    IO: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    S: MakeServiceRef<IO, Body, ResBody = B>,
    S::Error: Into<Box<dyn StdError + Send + Sync>>,
    B: HttpBody + 'static,
    B::Error: Into<Box<dyn StdError + Send + Sync>>,
    E: H2Exec<<S::Service as HttpService<Body>>::Future, B>,
    E: NewSvcExec<IO, S::Future, S::Service, E, NoopWatcher>, 

impl Future for OnUpgrade

impl<TInner: TryFuture> Future for BandwidthFuture<TInner>

impl<TMuxer> Future for Close<TMuxer> where
    TMuxer: StreamMuxer

impl<AFuture, BFuture, AInner, BInner> Future for EitherFuture<AFuture, BFuture> where
    AFuture: TryFuture<Ok = AInner>,
    BFuture: TryFuture<Ok = BInner>, 

impl<AFut, BFut, AItem, BItem, AError, BError> Future for EitherFuture2<AFut, BFut> where
    AFut: TryFuture<Ok = AItem, Error = AError>,
    BFut: TryFuture<Ok = BItem, Error = BError>, 

impl<P> Future for OutboundSubstreamRefWrapFuture<P> where
    P: Deref + Clone,
    P::Target: StreamMuxer

impl<P> Future for OutboundSubstreamRefFuture<P> where
    P: Deref,
    P::Target: StreamMuxer

impl<TFut, TMap, TMapOut> Future for AndThenFuture<TFut, TMap, TMapOut> where
    TFut: TryFuture,
    TMap: FnOnce(TFut::Ok, ConnectedPoint) -> TMapOut,
    TMapOut: TryFuture

impl<T, A, F, B> Future for MapFuture<T, F> where
    T: TryFuture<Ok = A>,
    F: FnOnce(A, ConnectedPoint) -> B, 

impl<T, F, TErr> Future for MapErrListenerUpgrade<T, F> where
    T: Transport,
    F: FnOnce(T::Error) -> TErr, 

impl<T, F, TErr> Future for MapErrDial<T, F> where
    T: Transport,
    F: FnOnce(T::Error) -> TErr, 

impl<InnerFut> Future for Timeout<InnerFut> where
    InnerFut: TryFuture

impl<C, U> Future for Authenticate<C, U> where
    C: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>> + OutboundUpgrade<Negotiated<C>, Output = <U as InboundUpgrade<Negotiated<C>>>::Output, Error = <U as InboundUpgrade<Negotiated<C>>>::Error>, 

impl<C, U, M, E> Future for Multiplex<C, U> where
    C: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>, Output = M, Error = E>,
    U: OutboundUpgrade<Negotiated<C>, Output = M, Error = E>, 

impl<F, U, C, D> Future for DialUpgradeFuture<F, U, C> where
    F: TryFuture<Ok = (PeerId, C)>,
    C: AsyncRead + AsyncWrite + Unpin,
    U: OutboundUpgrade<Negotiated<C>, Output = D>,
    U::Error: Error

impl<F, U, C, D> Future for ListenerUpgradeFuture<F, U, C> where
    F: TryFuture<Ok = (PeerId, C)>,
    C: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>, Output = D>,
    U::Error: Error

impl<C, U> Future for InboundUpgradeApply<C, U> where
    C: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>>, 

impl<C, U> Future for OutboundUpgradeApply<C, U> where
    C: AsyncRead + AsyncWrite + Unpin,
    U: OutboundUpgrade<Negotiated<C>>, 

impl<T, C> Future for Handshake<T, C>

impl Future for Dial

impl<R, N> Future for ListenerSelectFuture<R, N> where
    R: AsyncRead + AsyncWrite + Unpin,
    N: AsRef<[u8]> + Clone

impl<TInner> Future for NegotiatedComplete<TInner> where
    TInner: AsyncRead + AsyncWrite + Unpin

impl<B: BlockT> Future for BabeWorker<B>

impl<B: BlockT + 'static, H: ExHashT> Future for NetworkWorker<B, H>

impl<B: BlockT> Future for GossipEngine<B>

impl<S> Future for Seek<'_, S> where
    S: AsyncSeek + ?Sized + Unpin

impl<R, W> Future for Copy<'_, R, W> where
    R: AsyncRead + Unpin + ?Sized,
    W: AsyncWrite + Unpin + ?Sized

impl<T> Future for JoinHandle<T>

impl<T> Future for Receiver<T>

impl Future for Delay

impl<T> Future for Timeout<T> where
    T: Future

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Connect<IO>

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Accept<IO>

impl<T: Future> Future for Instrumented<T>

impl<T: Future> Future for Instrumented<T>

impl<T: Future> Future for WithDispatch<T>

impl Future for JsFuture

impl<F> Future for Timeout<F> where
    F: TryFuture,
    F::Error: From<Error>, 

impl Future for Delay

impl Future for Timer