tokio::future

Trait Future

1.36.0 · Source
pub(crate) 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 Readiness<'_>

Source§

impl Future for Acquire<'_>

Source§

impl Future for Notified<'_>

Source§

impl Future for LocalSet

Source§

impl Future for Sleep

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<A> Future for Shutdown<'_, A>
where A: AsyncWrite + Unpin + ?Sized,

1.36.0 · Source§

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

Source§

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

1.36.0 · Source§

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

1.36.0 · Source§

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

Source§

impl<F: Future> Future for Coop<F>

Source§

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

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, B> Future for ReadBuf<'_, R, B>
where R: AsyncRead + Unpin + ?Sized, B: BufMut + ?Sized,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<T> Future for Receiver<T>

Source§

impl<T> Future for JoinHandle<T>

Source§

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

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,

1.64.0 · Source§

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

Source§

impl<T, R> Future for BlockingTask<T>
where T: FnOnce() -> R + Send + 'static, R: Send + 'static,

Source§

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

Source§

impl<T: Future> Future for RunUntil<'_, T>

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,

Source§

impl<W, B> Future for WriteAllBuf<'_, W, B>
where W: AsyncWrite + Unpin, B: Buf,

Source§

impl<W, B> Future for WriteBuf<'_, W, B>
where W: AsyncWrite + Unpin, B: Buf,

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

impl<F, S> Future for SkippedHandshakeFuture<F, S>
where F: FnOnce(AllowStd<S>) -> WebSocket<AllowStd<S>> + Unpin, S: Unpin, AllowStd<S>: Read + Write,

impl<Role> Future for MidHandshake<Role>

impl<Role, F, S> Future for StartedHandshakeFuture<F, S>

impl<S> Future for Send<'_, S>
where S: AsyncRead + AsyncWrite + Unpin,

impl<'s, 'l, F: AsFd> Future for Readable<'s, 'l, F>

impl<'s, 'l, F: AsFd> Future for Writable<'s, 'l, F>

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

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

impl<T> Future for Receiver<T>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<Fut> Future for Flatten<Fut, Fut::Output>
where Fut: Future, Fut::Output: Future,

impl<Fut> Future for TryFlatten<Fut, Fut::Ok>
where Fut: TryFuture, Fut::Ok: TryFuture<Error = Fut::Error>,

impl<Fut> Future for TryFlattenErr<Fut, Fut::Error>
where Fut: TryFuture, Fut::Error: TryFuture<Ok = Fut::Ok>,

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

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

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

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

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

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

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

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

impl<Fut, F> Future for InspectErr<Fut, F>

impl<Fut, F> Future for InspectOk<Fut, F>

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

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

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

impl<Fut, F> Future for UnwrapOrElse<Fut, F>

impl<Fut, F, G> Future for MapOkOrElse<Fut, F, G>

impl<Fut, F, T> Future for Map<Fut, F>
where Fut: Future, F: FnOnce1<Fut::Output, Output = T>,

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

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

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

impl<Fut1, Fut2> Future for TryFlattenErr<Fut1, Fut2>
where TryFlattenErr<Fut1, 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 Then<Fut1, Fut2, F>
where Flatten<Map<Fut1, F>, Fut2>: Future,

impl<Fut1, Fut2, Fut3> Future for TryJoin3<Fut1, Fut2, Fut3>
where Fut1: TryFuture, Fut2: TryFuture<Error = Fut1::Error>, Fut3: TryFuture<Error = 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>,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<R, W> Future for CopyBufAbortable<'_, R, W>

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

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

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

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

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

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

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

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,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<St, Fut, F> Future for TryForEach<St, Fut, F>
where St: TryStream, F: FnMut(St::Ok) -> Fut, Fut: TryFuture<Ok = (), Error = 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>>,

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

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

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

impl<St, Si, Item, E> Future for Forward<St, Si, Item>
where Si: Sink<Item, Error = E>, St: Stream<Item = Result<Item, E>>,

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

impl<St: Stream + Unpin> Future for PollStreamFut<St>

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

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

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

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

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

impl<T> Future for Pending<T>

impl<T> Future for Ready<T>

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

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

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

impl<T, F: Fn() -> T> Future for AlwaysReady<T, F>

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

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

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

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

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

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

impl<F, T> Future for SourceFuture<F, T>
where F: FnOnce(Sender<T>) -> Source + 'static,

impl<T: 'static> Future for JoinHandle<T>

impl<T: 'static> Future for SpawnWithinJoinHandle<T>

impl<R, T: ElementImpl, F: FnOnce() -> R, G: Future<Output = R>> Future for CatchPanic<T, F, G>

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 Flush<T, B>
where T: AsyncWrite + Unpin, B: Buf,

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

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

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

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

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

impl Future for OnUpgrade

impl<B> Future for SendWhen<B>
where B: Body + 'static,

impl<B> Future for PipeMap<B>
where B: Body, B::Error: Into<Box<dyn Error + Send + Sync>>,

impl<B> Future for ResponseFutMap<B>
where B: Body + 'static,

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

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

impl<D, Bs, I, T> Future for Dispatcher<D, Bs, I, T>
where D: Dispatch<PollItem = MessageHead<T::Outgoing>, PollBody = Bs, RecvItem = MessageHead<T::Incoming>> + Unpin, D::PollError: Into<Box<dyn StdError + Send + Sync>>, I: Read + Write + Unpin, T: Http1Transaction + Unpin, Bs: Body + 'static, Bs::Error: Into<Box<dyn StdError + Send + Sync>>,

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

impl<S> Future for PipeToSendStream<S>
where S: Body, S::Error: Into<Box<dyn StdError + Send + Sync>>,

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> Future for Conn<T, B>
where B: Body, T: Read + Write + Unpin,

impl<T, B> Future for ConnMapErr<T, B>
where B: Body, T: Read + Write + Unpin,

impl<T, B> Future for ConnTask<T, B>
where B: Body, T: Read + Write + Unpin,

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 Future for GaiFuture

impl<F, R> Future for Lazy<F, R>
where F: FnOnce() -> R, R: Future,

impl<R: Resolve> Future for HttpConnecting<R>

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

impl Future for Pending

impl<IO> Future for LazyConfigAcceptor<IO>
where IO: AsyncRead + AsyncWrite + Unpin,

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Accept<IO>

impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Connect<IO>

impl<IS, SD> Future for MidHandshake<IS>
where IS: IoSession + Unpin, IS::Io: AsyncRead + AsyncWrite + Unpin, IS::Session: DerefMut + Deref<Target = ConnectionCommon<SD>> + Unpin, SD: SideData,

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

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

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

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

impl<T, E, St: ?Sized + Stream<Item = Result<T, E>> + Unpin> Future for TryNext<'_, St>

impl<T, U> Future for Collect<T, U>
where T: Stream, U: FromStream<T::Item>,

impl<F: Future> Future for MaybeDangling<F>

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<T: Future> Future for Instrumented<T>

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

impl Future for Want<'_>

impl Future for AnyFut

impl<F> Future for FilteredFuture<F>
where F: TryFuture, F::Ok: Reply, F::Error: IsReject,

impl<F, T> Future for UnifyFuture<F>
where F: TryFuture<Ok = (Either<T, T>,)>,

impl<F, T> Future for UntupleOneFuture<F>
where F: Filter<Extract = (T,)>, T: Tuple,

impl<FN, F> Future for WithLogFuture<FN, F>
where FN: Fn(Info<'_>), F: TryFuture, F::Ok: Reply, F::Error: IsReject,

impl<T, F> Future for State<T, F>
where T: TryFuture, F: Func<T::Ok>, F::Output: TryFuture + Send, <F::Output as TryFuture>::Error: CombineRejection<T::Error>,

impl<T, F> Future for State<T, F>
where T: TryFuture, F: Func<T::Ok>, F::Output: Future + Send,

impl<T, F> Future for AndThenFuture<T, F>

impl<T, F> Future for MapFuture<T, F>
where T: Filter, F: Func<T::Extract>,

impl<T, F> Future for OrElseFuture<T, F>
where T: Filter, F: Func<T::Error>, F::Output: TryFuture<Ok = T::Extract> + Send,

impl<T, F> Future for RecoverFuture<T, F>
where T: Filter, F: Func<T::Error>, F::Output: TryFuture + Send, <F::Output as TryFuture>::Error: IsReject,

impl<T, F> Future for ThenFuture<T, F>
where T: Filter, F: Func<T::Extract>, F::Output: Future + Send,

impl<T, F, E> Future for MapErrFuture<T, F>
where T: Filter, F: Fn(T::Error) -> E,

impl<T, TE, U, E> Future for State<T, TE, U>
where T: Future<Output = Result<TE, E>>, U: Filter, TE: Tuple, TE::HList: Combine<<U::Extract as Tuple>::HList> + Send, U::Error: CombineRejection<E>,

impl<T, U> Future for AndFuture<T, U>
where T: Filter, U: Filter, <T::Extract as Tuple>::HList: Combine<<U::Extract as Tuple>::HList> + Send, U::Error: CombineRejection<T::Error>,

impl<T, U> Future for EitherFuture<T, U>
where T: Filter, U: Filter, U::Error: CombineRejection<T::Error>,