1.36.0[][src]Trait futures_util::future::Future

#[must_use = "futures do nothing unless you `.await` or poll them"]#[lang = "future_trait"]pub trait Future {
    type Output;
    fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output>;
}

A future represents an asynchronous computation.

A future is a value that may 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

type Output

The type of value produced on completion.

Loading content...

Required methods

fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output>

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.

Loading content...

Trait Implementations

impl<'a, T> UnsafeFutureObj<'a, T> for &'a mut (dyn Future<Output = T> + 'a + Unpin)[src]

Implementations on Foreign Types

impl<F> Future for AssertUnwindSafe<F> where
    F: Future
[src]

type Output = <F as Future>::Output

impl<P> Future for Pin<P> where
    P: Unpin + DerefMut,
    <P as Deref>::Target: Future
[src]

type Output = <<P as Deref>::Target as Future>::Output

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
[src]

type Output = <F as Future>::Output

impl<F> Future for Box<F> where
    F: Unpin + Future + ?Sized
[src]

type Output = <F as Future>::Output

impl<'_, T> Future for Cancellation<'_, T>[src]

type Output = ()

impl<T> Future for Receiver<T>[src]

type Output = Result<T, Canceled>

Loading content...

Implementors

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

type Output = Result<usize>

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

type Output = Result<usize>

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

type Output = Result<u64>

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

type Output = Result<usize>

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

type Output = Result<usize>

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

type Output = Result<usize>

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

type Output = Result<()>

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

type Output = Result<usize>

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

type Output = Result<u64>

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

type Output = Result<u64>

impl<'_, Si: Sink<Item> + Unpin + ?Sized, Item> Future for futures_util::sink::Close<'_, Si, Item>[src]

type Output = Result<(), Si::Error>

impl<'_, Si: Sink<Item> + Unpin + ?Sized, Item> Future for futures_util::sink::Flush<'_, Si, Item>[src]

type Output = Result<(), Si::Error>

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

type Output = Result<(), Si::Error>

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

type Output = Result<(), Error>

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

type Output = St::Item

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

type Output = Option<St::Item>

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

type Output = Result<Option<St::Ok>, St::Error>

impl<'_, T> Future for FutureObj<'_, T>[src]

type Output = T

impl<'_, T> Future for LocalFutureObj<'_, T>[src]

type Output = T

impl<'_, W: AsyncWrite + ?Sized + Unpin> Future for futures_util::io::Close<'_, W>[src]

type Output = Result<()>

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

type Output = Result<usize>

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

type Output = Result<()>

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

type Output = Result<usize>

impl<'_, W: ?Sized> Future for futures_util::io::Flush<'_, W> where
    W: AsyncWrite + Unpin
[src]

type Output = Result<()>

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

type Output = Option<&'a St::Item>

impl<'a, T> Future for BiLockAcquire<'a, T>[src]

type Output = BiLockGuard<'a, T>

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

type Output = MutexGuard<'a, T>

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

type Output = A::Output

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

type Output = Either<(A::Output, B), (B::Output, A)>

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

type Output = Result<Either<(A::Ok, B), (B::Ok, A)>, Either<(A::Error, B), (B::Error, A)>>

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

type Output = <Flatten<F, <F as Future>::Output> as Future>::Output

impl<F> Future for JoinAll<F> where
    F: Future
[src]

type Output = Vec<F::Output>

impl<F> Future for TryJoinAll<F> where
    F: TryFuture
[src]

type Output = Result<Vec<F::Ok>, F::Error>

impl<F, R> Future for Lazy<F> where
    F: FnOnce(&mut Context) -> R, 
[src]

type Output = R

impl<F: Future> Future for OptionFuture<F>[src]

type Output = Option<F::Output>

impl<Fut> Future for Abortable<Fut> where
    Fut: Future
[src]

type Output = Result<Fut::Output, Aborted>

impl<Fut> Future for CatchUnwind<Fut> where
    Fut: Future + UnwindSafe
[src]

type Output = Result<Fut::Output, Box<dyn Any + Send>>

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

type Output = <Map<Fut, OkFn<Never>> as Future>::Output

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

type Output = Fut::Output

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

type Output = <Map<Fut, OkFn<()>> as Future>::Output

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

type Output = <MapErr<Fut, IntoFn<E>> as Future>::Output

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

type Output = <MapOk<Fut, IntoFn<E>> as Future>::Output

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

type Output = <Map<Fut, InspectFn<F>> as Future>::Output

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

type Output = <Inspect<IntoFuture<Fut>, InspectErrFn<F>> as Future>::Output

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

type Output = <Inspect<IntoFuture<Fut>, InspectOkFn<F>> as Future>::Output

impl<Fut, F> Future for Map<Fut, F> where
    Map<Fut, F>: Future
[src]

type Output = <Map<Fut, F> as Future>::Output

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

type Output = <Map<IntoFuture<Fut>, MapErrFn<F>> as Future>::Output

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

type Output = <Map<IntoFuture<Fut>, MapOkFn<F>> as Future>::Output

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

type Output = <Map<IntoFuture<Fut>, UnwrapOrElseFn<F>> as Future>::Output

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

type Output = <Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>> as Future>::Output

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

type Output = <Map<Fut, IntoFn<T>> as Future>::Output

impl<Fut1, Fut2> Future for TryFlatten<Fut1, Fut2> where
    TryFlatten<Fut1, Fut2>: Future
[src]

type Output = <TryFlatten<Fut1, Fut2> as Future>::Output

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

type Output = Result<(Fut1::Ok, Fut2::Ok), Fut1::Error>

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

type Output = <TryFlatten<MapOk<Fut1, F>, Fut2> as Future>::Output

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

type Output = <TryFlattenErr<MapErr<Fut1, F>, Fut2> as Future>::Output

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

type Output = <Flatten<Map<Fut1, F>, Fut2> as Future>::Output

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

type Output = Result<(Fut1::Ok, Fut2::Ok, Fut3::Ok), 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>, 
[src]

type Output = Result<(Fut1::Ok, Fut2::Ok, Fut3::Ok, Fut4::Ok), 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>, 
[src]

type Output = Result<(Fut1::Ok, Fut2::Ok, Fut3::Ok, Fut4::Ok, Fut5::Ok), Fut1::Error>

impl<Fut1: Future, Fut2: Future> Future for Join<Fut1, Fut2>[src]

type Output = (Fut1::Output, Fut2::Output)

impl<Fut1: Future, Fut2: Future, Fut3: Future> Future for Join3<Fut1, Fut2, Fut3>[src]

type Output = (Fut1::Output, Fut2::Output, Fut3::Output)

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

type Output = (Fut1::Output, Fut2::Output, Fut3::Output, Fut4::Output)

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

type Output = (Fut1::Output, Fut2::Output, Fut3::Output, Fut4::Output, Fut5::Output)

impl<Fut: Future + Unpin> Future for SelectAll<Fut>[src]

type Output = (Fut::Output, usize, Vec<Fut>)

impl<Fut: Future> Future for MaybeDone<Fut>[src]

type Output = ()

impl<Fut: Future> Future for Fuse<Fut>[src]

type Output = Fut::Output

impl<Fut: Future> Future for Remote<Fut>[src]

type Output = ()

impl<Fut: TryFuture + Unpin> Future for SelectOk<Fut>[src]

type Output = Result<(Fut::Ok, Vec<Fut>), Fut::Error>

impl<Fut: TryFuture> Future for TryMaybeDone<Fut>[src]

type Output = Result<(), Fut::Error>

impl<Fut: TryFuture> Future for IntoFuture<Fut>[src]

type Output = Result<Fut::Ok, Fut::Error>

impl<Fut: Future01> Future for Compat01As03<Fut>[src]

type Output = Result<Fut::Item, Fut::Error>

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

type Output = St::Item

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

type Output = Result<St::Ok, St::Error>

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

type Output = C

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

type Output = Result<C, St::Error>

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

type Output = ()

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

type Output = ()

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

type Output = Result<(), 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>>, 
[src]

type Output = Result<(), St::Error>

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>, 
[src]

type Output = T

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>, 
[src]

type Output = Result<T, St::Error>

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

type Output = <Forward<St, Si, St::Ok> as Future>::Output

impl<St: Stream + Unpin> Future for StreamFuture<St>[src]

type Output = (Option<St::Item>, St)

impl<T> Future for Pending<T>[src]

type Output = T

impl<T> Future for Ready<T>[src]

type Output = T

impl<T, F> Future for PollFn<F> where
    F: FnMut(&mut Context) -> Poll<T>, 
[src]

type Output = T

impl<T: 'static> Future for RemoteHandle<T>[src]

type Output = T

Loading content...