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, commonly 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 for the
underlying computation 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.
Having said that, some Futures may represent a value that is being computed in a different task. In this case, the futureโs underlying computation is simply acting as a conduit for a value being computed by that other task, which will proceed independently of the Future. Futures of this kind are typically obtained when spawning a new task into an async runtime.
The poll
function should not be 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.
Trait Implementationsยง
Implementorsยง
ยงimpl Future for HandleErrorFuture
impl Future for HandleErrorFuture
ยงimpl Future for flams_router_vscode::server_fn::axum_export::middleware::future::FromFnResponseFuture
impl Future for flams_router_vscode::server_fn::axum_export::middleware::future::FromFnResponseFuture
ยงimpl Future for flams_router_vscode::server_fn::axum_export::middleware::future::MapRequestResponseFuture
impl Future for flams_router_vscode::server_fn::axum_export::middleware::future::MapRequestResponseFuture
ยงimpl Future for flams_router_vscode::server_fn::axum_export::middleware::future::MapResponseResponseFuture
impl Future for flams_router_vscode::server_fn::axum_export::middleware::future::MapResponseResponseFuture
ยงimpl<'a, MutexType> Future for GenericSemaphoreAcquireFuture<'a, MutexType>where
MutexType: RawMutex,
impl<'a, MutexType> Future for GenericSemaphoreAcquireFuture<'a, MutexType>where
MutexType: RawMutex,
ยงimpl<'a, MutexType, T> Future for GenericMutexLockFuture<'a, MutexType, T>where
MutexType: RawMutex,
impl<'a, MutexType, T> Future for GenericMutexLockFuture<'a, MutexType, T>where
MutexType: RawMutex,
ยงimpl<A, B, C, D, E, F, G, H, I, J, K> Future for EitherOf11Future<A, B, C, D, E, F, G, H, I, J, K>
impl<A, B, C, D, E, F, G, H, I, J, K> Future for EitherOf11Future<A, B, C, D, E, F, G, H, I, J, K>
ยงimpl<A, B, C, D, E, F, G, H, I, J, K, L> Future for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
type Output = EitherOf12<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output>
ยงimpl<A, B, C, D, E, F, G, H, I, J, K, L, M> Future for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Future for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
type Output = EitherOf13<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output>
ยงimpl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> Future for EitherOf14Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> Future for EitherOf14Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N>
type Output = EitherOf14<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output, <N as Future>::Output>
ยงimpl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> Future for EitherOf15Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> Future for EitherOf15Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O>
type Output = EitherOf15<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output, <N as Future>::Output, <O as Future>::Output>
ยงimpl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> Future for EitherOf16Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> Future for EitherOf16Future<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P>
type Output = EitherOf16<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output, <N as Future>::Output, <O as Future>::Output, <P as Future>::Output>
ยงimpl<B, T, E, S> Future for flams_router_vscode::server_fn::axum_export::middleware::future::FromExtractorResponseFuture<B, T, E, S>where
E: FromRequestParts<S>,
T: Service<Request<B>>,
<T as Service<Request<B>>>::Response: IntoResponse,
impl<B, T, E, S> Future for flams_router_vscode::server_fn::axum_export::middleware::future::FromExtractorResponseFuture<B, T, E, S>where
E: FromRequestParts<S>,
T: Service<Request<B>>,
<T as Service<Request<B>>>::Response: IntoResponse,
ยงimpl<F1, F2, N> Future for AndThenFuture<F1, F2, N>where
F2: TryFuture,
AndThen<ErrInto<F1, <F2 as TryFuture>::Error>, F2, N>: Future,
impl<F1, F2, N> Future for AndThenFuture<F1, F2, N>where
F2: TryFuture,
AndThen<ErrInto<F1, <F2 as TryFuture>::Error>, F2, N>: Future,
ยงimpl<F> Future for IntoServiceFuture<F>
impl<F> Future for IntoServiceFuture<F>
1.36.0 ยท Sourceยงimpl<F> Future for AssertUnwindSafe<F>where
F: Future,
impl<F> Future for AssertUnwindSafe<F>where
F: Future,
ยงimpl<Fut1, Fut2> Future for TryJoin<Fut1, Fut2>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2> Future for TryJoin<Fut1, Fut2>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
ยงimpl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F>where
TryFlatten<MapOk<Fut1, F>, 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<Fut1, Fut2, F> Future for OrElse<Fut1, Fut2, F>where
TryFlattenErr<MapErr<Fut1, F>, Fut2>: Future,
ยงimpl<Fut1, Fut2, Fut3> Future for TryJoin3<Fut1, Fut2, Fut3>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2, Fut3> Future for TryJoin3<Fut1, Fut2, Fut3>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
ยงimpl<Fut1, Fut2, Fut3, Fut4> Future for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2, Fut3, Fut4> Future for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>,
ยงimpl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut5: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut5: TryFuture<Error = <Fut1 as TryFuture>::Error>,
ยงimpl<Fut> Future for ErrorHookFuture<Fut>where
Fut: Future,
impl<Fut> Future for ErrorHookFuture<Fut>where
Fut: Future,
ยงimpl<Fut> Future for CatchUnwind<Fut>where
Fut: Future + UnwindSafe,
impl<Fut> Future for CatchUnwind<Fut>where
Fut: Future + UnwindSafe,
ยงimpl<Fut> Future for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Future,
impl<Fut> Future for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Future,
type Output = <Map<Fut, OkFn<Infallible>> as Future>::Output
ยงimpl<Fut, F> Future for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Future,
impl<Fut, F> Future for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Future,
ยงimpl<Fut, F> Future for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Future,
impl<Fut, F> Future for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<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, G> Future for MapOkOrElse<Fut, F, G>where
Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Future,
ยงimpl<Fut, ResBody, E, C, OnResponseT, OnBodyChunkT, OnEosT, OnFailureT> Future for ResponseFuture<Fut, C, OnResponseT, OnBodyChunkT, OnEosT, OnFailureT>where
Fut: Future<Output = Result<Response<ResBody>, E>>,
ResBody: Body,
<ResBody as Body>::Error: Display + 'static,
E: Display + 'static,
C: ClassifyResponse,
OnResponseT: OnResponse<ResBody>,
OnFailureT: OnFailure<<C as ClassifyResponse>::FailureClass>,
OnBodyChunkT: OnBodyChunk<<ResBody as Body>::Data>,
OnEosT: OnEos,
impl<Fut, ResBody, E, C, OnResponseT, OnBodyChunkT, OnEosT, OnFailureT> Future for ResponseFuture<Fut, C, OnResponseT, OnBodyChunkT, OnEosT, OnFailureT>where
Fut: Future<Output = Result<Response<ResBody>, E>>,
ResBody: Body,
<ResBody as Body>::Error: Display + 'static,
E: Display + 'static,
C: ClassifyResponse,
OnResponseT: OnResponse<ResBody>,
OnFailureT: OnFailure<<C as ClassifyResponse>::FailureClass>,
OnBodyChunkT: OnBodyChunk<<ResBody as Body>::Data>,
OnEosT: OnEos,
ยงimpl<I, S, E, B> Future for Connection<'_, I, S, E>where
S: Service<Request<Incoming>, Response = Response<B>>,
<S as Service<Request<Incoming>>>::Future: 'static,
<S as Service<Request<Incoming>>>::Error: Into<Box<dyn Error + Send + Sync>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
I: Read + Write + Unpin + 'static,
E: HttpServerConnExec<<S as Service<Request<Incoming>>>::Future, B>,
impl<I, S, E, B> Future for Connection<'_, I, S, E>where
S: Service<Request<Incoming>, Response = Response<B>>,
<S as Service<Request<Incoming>>>::Future: 'static,
<S as Service<Request<Incoming>>>::Error: Into<Box<dyn Error + Send + Sync>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
I: Read + Write + Unpin + 'static,
E: HttpServerConnExec<<S as Service<Request<Incoming>>>::Future, B>,
ยงimpl<I, S, E, B> Future for UpgradeableConnection<'_, I, S, E>where
S: Service<Request<Incoming>, Response = Response<B>>,
<S as Service<Request<Incoming>>>::Future: 'static,
<S as Service<Request<Incoming>>>::Error: Into<Box<dyn Error + Send + Sync>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
I: Read + Write + Unpin + Send + 'static,
E: HttpServerConnExec<<S as Service<Request<Incoming>>>::Future, B>,
impl<I, S, E, B> Future for UpgradeableConnection<'_, I, S, E>where
S: Service<Request<Incoming>, Response = Response<B>>,
<S as Service<Request<Incoming>>>::Future: 'static,
<S as Service<Request<Incoming>>>::Error: Into<Box<dyn Error + Send + Sync>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
I: Read + Write + Unpin + Send + 'static,
E: HttpServerConnExec<<S as Service<Request<Incoming>>>::Future, B>,
Sourceยงimpl<L, R> Future for either::Either<L, R>
Either<L, R>
is a future if both L
and R
are futures.
impl<L, R> Future for either::Either<L, R>
Either<L, R>
is a future if both L
and R
are futures.