Trait async_std::future::Future

1.36.0 · source ·
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 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.

Required Associated Types§

1.36.0 · source

type Output

The type of value produced on completion.

Required Methods§

1.36.0 · source

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:

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 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 Timer

source§

impl Future for AcquireArc

source§

impl Future for event_listener::EventListener

source§

impl Future for YieldNow

source§

impl<'a> Future for BarrierWait<'a>

source§

impl<'a> Future for Acquire<'a>

source§

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

source§

type Output = Result<&'a [u8], Error>

source§

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

source§

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

source§

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

source§

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

source§

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

source§

impl<'a, T> Future for async_std::channel::Recv<'a, T>

source§

impl<'a, T> Future for async_std::channel::Send<'a, T>

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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>,

source§

type Output = Result<B, E>

source§

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

source§

type Output = (<F1 as Future>::Output, <F2 as Future>::Output)

1.36.0 · source§

impl<F> Future for &mut F
where F: Future + Unpin + ?Sized,

1.36.0 · source§

impl<F> Future for AssertUnwindSafe<F>
where F: Future,

source§

impl<F> Future for FutureWrapper<F>

source§

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

source§

type Output = Result<<F as Future>::Output, Box<dyn Any + Send>>

1.36.0 · source§

impl<F, A> Future for Box<F, A>
where F: Future + Unpin + ?Sized, A: Allocator,

1.36.0 · source§

impl<P> Future for Pin<P>
where P: DerefMut, <P as Deref>::Target: Future,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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>,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

impl<T> Future for JoinHandle<T>

source§

impl<T> Future for AsyncDropInPlace<T>
where T: ?Sized,

1.48.0 · source§

impl<T> Future for Pending<T>

1.48.0 · source§

impl<T> Future for Ready<T>

source§

impl<T> Future for Exclusive<T>
where T: Future + ?Sized,

source§

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

source§

impl<T> Future for ReadableOwned<T>

source§

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

source§

impl<T> Future for WritableOwned<T>

source§

impl<T> Future for LockArc<T>
where T: ?Sized,

source§

impl<T> Future for UpgradeArc<T>
where T: ?Sized,

source§

impl<T> Future for event_listener::EventListener<T>

source§

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

source§

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

source§

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

source§

type Output = Result<C, E>

source§

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

source§

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

1.64.0 · source§

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

source§

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

source§

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

source§

impl<T, M> Future for FallibleTask<T, M>

source§

impl<T, M> Future for Task<T, M>

source§

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

source§

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

source§

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

source§

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

source§

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