pub trait Future {
type Output;
// Required method
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 poll
ing 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.
Required Associated Types§
Required Methods§
1.36.0 · Sourcefn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>
Attempts 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:
Poll::Pending
if the future is not ready yetPoll::Ready(val)
with the resultval
of this future if it finished successfully.
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 poll
ed 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 a while, 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.
Implementors§
Source§impl Future for AcquireArc
impl Future for AcquireArc
type Output = SemaphoreGuardArc
Source§impl<'a> Future for BarrierWait<'a>
impl<'a> Future for BarrierWait<'a>
type Output = BarrierWaitResult
Source§impl<'a, T> Future for Read<'a, T>where
T: ?Sized,
impl<'a, T> Future for Read<'a, T>where
T: ?Sized,
type Output = RwLockReadGuard<'a, T>
Source§impl<'a, T> Future for UpgradableRead<'a, T>where
T: ?Sized,
impl<'a, T> Future for UpgradableRead<'a, T>where
T: ?Sized,
type Output = RwLockUpgradableReadGuard<'a, T>
Source§impl<'a, T> Future for UpgradableReadArc<'a, T>where
T: ?Sized,
impl<'a, T> Future for UpgradableReadArc<'a, T>where
T: ?Sized,
type Output = RwLockUpgradableReadGuardArc<T>
Source§impl<'a, T> Future for Upgrade<'a, T>where
T: ?Sized,
impl<'a, T> Future for Upgrade<'a, T>where
T: ?Sized,
type Output = RwLockWriteGuard<'a, T>
Source§impl<'a, T> Future for Write<'a, T>where
T: ?Sized,
impl<'a, T> Future for Write<'a, T>where
T: ?Sized,
type Output = RwLockWriteGuard<'a, T>
Source§impl<'a, T> Future for WriteArc<'a, T>where
T: ?Sized,
impl<'a, T> Future for WriteArc<'a, T>where
T: ?Sized,
type Output = RwLockWriteGuardArc<T>
Source§impl<'a, T, const STACK_SIZE: usize> Future for StackFuture<'a, T, STACK_SIZE>
impl<'a, T, const STACK_SIZE: usize> Future for StackFuture<'a, T, STACK_SIZE>
Source§impl<F> Future for FutureWrapper<F>where
F: EventListenerFuture + ?Sized,
impl<F> Future for FutureWrapper<F>where
F: EventListenerFuture + ?Sized,
type Output = <F as EventListenerFuture>::Output
Source§impl<F> Future for CatchUnwind<F>where
F: Future + UnwindSafe,
Available on crate feature std
only.
impl<F> Future for CatchUnwind<F>where
F: Future + UnwindSafe,
std
only.1.36.0 · Source§impl<F> Future for AssertUnwindSafe<F>where
F: Future,
impl<F> Future for AssertUnwindSafe<F>where
F: Future,
Source§impl<R> Future for ReadExactFuture<'_, R>
impl<R> Future for ReadExactFuture<'_, R>
Source§impl<R> Future for ReadFuture<'_, R>
impl<R> Future for ReadFuture<'_, R>
Source§impl<R> Future for ReadLineFuture<'_, R>
impl<R> Future for ReadLineFuture<'_, R>
Source§impl<R> Future for ReadToEndFuture<'_, R>
impl<R> Future for ReadToEndFuture<'_, R>
Source§impl<R> Future for ReadToStringFuture<'_, R>
impl<R> Future for ReadToStringFuture<'_, R>
Source§impl<R> Future for ReadUntilFuture<'_, R>
impl<R> Future for ReadUntilFuture<'_, R>
Source§impl<R> Future for ReadVectoredFuture<'_, R>
impl<R> Future for ReadVectoredFuture<'_, R>
Source§impl<S> Future for SeekForwardFuture<'_, S>
impl<S> Future for SeekForwardFuture<'_, S>
Source§impl<S> Future for SeekFuture<'_, S>
impl<S> Future for SeekFuture<'_, S>
Source§impl<S> Future for LastFuture<S>where
S: Stream,
impl<S> Future for LastFuture<S>where
S: Stream,
Source§impl<S> Future for NextFuture<'_, S>
impl<S> Future for NextFuture<'_, S>
Source§impl<S, A, B, FromA, FromB> Future for UnzipFuture<S, FromA, FromB>
impl<S, A, B, FromA, FromB> Future for UnzipFuture<S, FromA, FromB>
type Output = (FromA, FromB)
Source§impl<S, B, F> Future for FindMapFuture<'_, S, F>
impl<S, B, F> Future for FindMapFuture<'_, S, F>
Source§impl<S, C> Future for CollectFuture<S, C>
impl<S, C> Future for CollectFuture<S, C>
Source§impl<S, F> Future for ForEachFuture<S, F>
impl<S, F> Future for ForEachFuture<S, F>
Source§impl<S, F, E> Future for TryForEachFuture<'_, S, F>
impl<S, F, E> Future for TryForEachFuture<'_, S, F>
Source§impl<S, F, T> Future for FoldFuture<S, F, T>
impl<S, F, T> Future for FoldFuture<S, F, T>
Source§impl<S, P> Future for FindFuture<'_, S, P>
impl<S, P> Future for FindFuture<'_, S, P>
Source§impl<S, P> Future for PositionFuture<'_, S, P>
impl<S, P> Future for PositionFuture<'_, S, P>
Source§impl<S, P, B> Future for PartitionFuture<S, P, B>
impl<S, P, B> Future for PartitionFuture<S, P, B>
Source§impl<T> Future for UpgradeArc<T>where
T: ?Sized,
impl<T> Future for UpgradeArc<T>where
T: ?Sized,
type Output = RwLockWriteGuardArc<T>
Source§impl<T> Future for WithDispatch<T>where
T: Future,
Available on crate feature std
only.
impl<T> Future for WithDispatch<T>where
T: Future,
std
only.