futures::future

Trait 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.

Trait Implementations§

Source§

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

Source§

fn into_raw(self) -> *mut dyn Future<Output = T> + 'a

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

unsafe fn drop(_ptr: *mut dyn Future<Output = T> + 'a)

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

impl<'a, T> UnsafeFutureObj<'a, T> for Box<dyn Future<Output = T> + 'a>
where T: 'a,

Source§

fn into_raw(self) -> *mut dyn Future<Output = T> + 'a

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

unsafe fn drop(ptr: *mut dyn Future<Output = T> + 'a)

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

impl<'a, T> UnsafeFutureObj<'a, T> for Box<dyn Future<Output = T> + Send + 'a>
where T: 'a,

Source§

fn into_raw(self) -> *mut dyn Future<Output = T> + 'a

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

unsafe fn drop(ptr: *mut dyn Future<Output = T> + 'a)

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

impl<'a, T> UnsafeFutureObj<'a, T> for Pin<&'a mut dyn Future<Output = T>>

Source§

fn into_raw(self) -> *mut dyn Future<Output = T> + 'a

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

unsafe fn drop(_ptr: *mut dyn Future<Output = T> + 'a)

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

Implementors§

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

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 Flatten<F>
where Flatten<F, <F as Future>::Output>: Future, F: Future,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

1.36.0 · Source§

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

Source§

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

Source§

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

Source§

type Output = (<Fut1 as Future>::Output, <Fut2 as Future>::Output)

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = (<Fut1 as Future>::Output, <Fut2 as Future>::Output, <Fut3 as Future>::Output)

Source§

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

Source§

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

Source§

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

Source§

type Output = (<Fut1 as Future>::Output, <Fut2 as Future>::Output, <Fut3 as Future>::Output, <Fut4 as Future>::Output)

Source§

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

Source§

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

Source§

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

Source§

type Output = (<Fut1 as Future>::Output, <Fut2 as Future>::Output, <Fut3 as Future>::Output, <Fut4 as Future>::Output, <Fut5 as Future>::Output)

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = <Fut as Future>::Output

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = <Fut as Future>::Output

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

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 Read<'_, R>
where R: AsyncRead + Unpin + ?Sized,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<R> Future for SeeKRelative<'_, R>
where R: AsyncRead + AsyncSeek,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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,

Source§

type Output = Result<(), Error>

Source§

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

Source§

type Output = <St as Stream>::Item

Source§

impl<St> Future for Count<St>
where St: Stream,

Source§

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

Source§

type Output = Option<<St as Stream>::Item>

Source§

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

Source§

type Output = <St as Stream>::Item

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = Option<<St as Stream>::Item>

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<St, Fut, F> Future for TryAll<St, Fut, F>
where St: TryStream, F: FnMut(<St as TryStream>::Ok) -> Fut, Fut: Future<Output = bool>,

Source§

impl<St, Fut, F> Future for TryAny<St, Fut, F>
where St: TryStream, F: FnMut(<St as TryStream>::Ok) -> Fut, Fut: Future<Output = bool>,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = Option<<St as Stream>::Item>

Source§

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

Source§

impl<T> Future for Receiver<T>

Source§

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

Source§

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

Source§

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

Source§

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

1.48.0 · Source§

impl<T> Future for core::future::pending::Pending<T>

1.48.0 · Source§

impl<T> Future for core::future::ready::Ready<T>

Source§

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

Source§

impl<T> Future for futures::future::Pending<T>

Source§

impl<T> Future for futures::future::Ready<T>

Source§

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

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 AlwaysReady<T, F>
where F: Fn() -> T,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

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

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

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

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

impl Future for Timer

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<'a> Future for Acquire<'a>

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

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

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

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

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

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

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

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

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

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

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

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

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

impl Future for ProvideRegion<'_>

impl Future for ProvideToken<'_>

impl Future for Never

impl Future for Sleep

impl<T> Future for NowOrLater<T, OnlyReady>

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

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

impl<'a> Future for DnsFuture<'a>

impl<'a> Future for EndpointFuture<'a>

impl<'a> Future for IdentityFuture<'a>

impl<B, T, E, S> Future for ResponseFuture<B, T, E, S>

impl<E> Future for RouteFuture<E>

impl<S> Future for LayeredFuture<S>
where S: Service<Request>,

impl Future for Sleep

impl<L, R> Future for Either<L, R>
where L: Future, R: Future<Output = L::Output>,

impl<T> Future for EventListener<T>

impl Future for YieldNow

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

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

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

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

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

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

impl<R: AsyncRead + Unpin + ?Sized> Future for ReadFuture<'_, 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 ReadVectoredFuture<'_, R>

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

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<S, B, F> Future for FindMapFuture<'_, S, F>
where S: Stream + Unpin + ?Sized, F: FnMut(S::Item) -> Option<B>,

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

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

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

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

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, P> Future for FindFuture<'_, S, P>
where S: Stream + Unpin + ?Sized, P: FnMut(&S::Item) -> bool,

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

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: Stream + Unpin + ?Sized> Future for NextFuture<'_, S>

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

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

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

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

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

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

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

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

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

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

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

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

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

impl Future for Delay

impl<B> Future for ReadySendRequest<B>
where B: Buf,

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

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

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

impl<T: Body + ?Sized> Future for Collect<T>

impl Future for Receiver

impl Future for Receiver

impl Future for OnUpgrade

impl<I, B, S> Future for Connection<I, S>
where S: HttpService<Incoming, ResBody = B>, S::Error: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin, B: Body + 'static, B::Error: Into<Box<dyn StdError + Send + Sync>>,

impl<I, B, S> Future for UpgradeableConnection<I, S>
where S: HttpService<Incoming, ResBody = B>, S::Error: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin + Send + 'static, B: Body + 'static, B::Error: Into<Box<dyn StdError + Send + Sync>>,

impl<I, B, S, E> Future for Connection<I, S, E>
where S: HttpService<Incoming, ResBody = B>, S::Error: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin, B: Body + 'static, B::Error: Into<Box<dyn StdError + Send + Sync>>, E: Http2ServerConnExec<S::Future, B>,

impl<T, B> Future for Connection<T, B>
where T: Read + Write + Unpin, B: Body + 'static, B::Data: Send, B::Error: Into<Box<dyn StdError + Send + Sync>>,

impl<T, B, E> Future for Connection<T, B, E>
where T: Read + Write + Unpin + 'static, B: Body + 'static + Unpin, B::Data: Send, E: Unpin + Http2ClientConnExec<B, T>, B::Error: Into<Box<dyn Error + Send + Sync>>,

impl<T: Read + Write + Unpin> Future for HttpsConnecting<T>

impl Future for GaiFuture

impl<I, S, E, B> Future for Connection<'_, I, S, E>
where S: Service<Request<Incoming>, Response = Response<B>>, S::Future: 'static, S::Error: Into<Box<dyn StdError + Send + Sync>>, B: Body + 'static, B::Error: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin + 'static, E: HttpServerConnExec<S::Future, B>,

impl<I, S, E, B> Future for UpgradeableConnection<'_, I, S, E>
where S: Service<Request<Incoming>, Response = Response<B>>, S::Future: 'static, S::Error: Into<Box<dyn StdError + Send + Sync>>, B: Body + 'static, B::Error: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin + Send + 'static, E: HttpServerConnExec<S::Future, B>,

impl<S, R> Future for TowerToHyperServiceFuture<S, R>
where S: Service<R>,

impl Future for GetConn

impl<F, R, E> Future for PrometheusFuture<F>
where R: IntoResponse, E: Into<Infallible>, F: Future<Output = Result<R, E>>,

impl Future for Receiver

impl<A> Future for ReadExactOrEof<'_, A>
where A: AsyncRead + Unpin,

impl<F: Future, M: DurationMetric> Future for ExecTimeFuture<F, M>

impl<F: Future, M: DurationMetric> Future for WallTimeFuture<F, M>

impl<F: FnMut(T) + Unpin, T> Future for GuardedReceiver<F, T>

impl<Fut> Future for OreCatchUnwind<Fut>
where Fut: Future + UnwindSafe,

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

impl<T> Future for AbortOnDropHandle<T>

impl<T> Future for JoinHandle<T>

impl<T, Name, NameClosure> Future for SpawnIfCanceled<T, Name, NameClosure>
where Name: AsRef<str>, NameClosure: FnOnce() -> Name + Unpin, T: Send + 'static,

impl<F: Future> Future for SignaledFuture<F>

impl<T: Future> Future for WithContext<T>

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

impl<F: Future> Future for SyncFuture<F>

impl Future for Notified<'_>

impl Future for LocalSet

impl Future for Sleep

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

impl<T> Future for Receiver<T>

impl<T> Future for JoinHandle<T>

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

impl<T: 'static, F: Future> Future for TaskLocalFuture<T, F>

impl<C, Reader> Future for ReadToContainerRngFuture<'_, C, Reader>
where C: Container + ?Sized, Reader: AsyncRead + ?Sized + Unpin,

impl<Reader: AsyncRead + ?Sized + Unpin> Future for ReadToVecRngFuture<'_, Reader>

impl<T: AsyncRead + ?Sized + Unpin> Future for ReadToVecFuture<'_, T>

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

impl<S, T> Future for Connection<S, T>

impl<L, R, O> Future for Either<L, R>
where L: Future<Output = O>, R: Future<Output = O>,

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

impl<F, E, B> Future for ResponseFuture<F>
where F: Future<Output = Result<Response<B>, E>>, E: Into<Box<dyn Error + Send + Sync>>, B: Default + Body<Data = Bytes> + Send + 'static, B::Error: Into<Box<dyn Error + Send + Sync>>,

impl<'a, T, Request> Future for Ready<'a, T, Request>
where T: Service<Request>,

impl<A, B, T, AE, BE> Future for Either<A, B>
where A: Future<Output = Result<T, AE>>, AE: Into<BoxError>, B: Future<Output = Result<T, BE>>, BE: Into<BoxError>,

impl<F, C, H, T, E> Future for TrackCompletionFuture<F, C, H>
where F: Future<Output = Result<T, E>>, C: TrackCompletion<H, T>,

impl<F, N> Future for MapErrFuture<F, N>
where MapErr<F, N>: Future,

impl<F, N> Future for MapResponseFuture<F, N>
where MapOk<F, N>: Future,

impl<F, N> Future for MapResultFuture<F, N>
where Map<F, N>: Future,

impl<F, T, E> Future for ResponseFuture<F>
where F: Future<Output = Result<T, E>>, E: Into<BoxError>,

impl<F, T, E> Future for ResponseFuture<F>
where F: Future<Output = Result<T, E>>,

impl<F, T, E> Future for ResponseFuture<F>
where F: Future<Output = Result<T, E>>, E: Into<BoxError>,

impl<F, T, E> Future for ResponseFuture<F>
where F: Future<Output = Result<T, E>>, E: Into<BoxError>,

impl<F, T, E> Future for ResponseFuture<F>
where F: Future<Output = Result<T, E>>, E: Into<BoxError>,

impl<F, T, E, Req> Future for MakeFuture<F, Req>
where F: Future<Output = Result<T, E>>, T: Discover, <T as Discover>::Key: Hash, <T as Discover>::Service: Service<Req>, <<T as Discover>::Service as Service<Req>>::Error: Into<BoxError>,

impl<F1, F2, N> Future for ThenFuture<F1, F2, N>
where Then<F1, F2, N>: Future,

impl<F1, F2: TryFuture, N> Future for AndThenFuture<F1, F2, N>
where AndThen<ErrInto<F1, F2::Error>, F2, N>: Future,

impl<P, S, Request> Future for AsyncResponseFuture<P, S, Request>
where P: AsyncPredicate<Request>, S: Service<P::Request>, S::Error: Into<BoxError>,

impl<P, S, Request> Future for ResponseFuture<P, S, Request>
where P: Policy<Request, S::Response, S::Error> + Clone, S: Service<Request> + Clone,

impl<R, F> Future for ResponseFuture<R, F>

impl<S> Future for SharedFuture<S>

impl<S, Req> Future for Oneshot<S, Req>
where S: Service<Req>,

impl<T, Request> Future for ReadyOneshot<T, Request>
where T: Service<Request>,

impl<Auth, S, ReqBody, B> Future for ResponseFuture<Auth, S, ReqBody>
where Auth: AsyncAuthorizeRequest<ReqBody, ResponseBody = B>, S: Service<Request<Auth::RequestBody>, Response = Response<B>>,

impl<F, B, E> Future for ResponseFuture<F>
where F: Future<Output = Result<Response<B>, E>>, B: Default,

impl<F, B, E> Future for ResponseFuture<F, B>
where F: Future<Output = Result<Response<B>, E>>,

impl<Fut, F, ResBody, E, NewResBody> Future for ResponseFuture<Fut, F>
where Fut: Future<Output = Result<Response<ResBody>, E>>, F: FnMut(ResBody) -> NewResBody,

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::Error: Display + 'static, E: Display + 'static, C: ClassifyResponse, OnResponseT: OnResponse<ResBody>, OnFailureT: OnFailure<C::FailureClass>, OnBodyChunkT: OnBodyChunk<ResBody::Data>, OnEosT: OnEos,

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

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