1.36.0[][src]Trait af_lib::prelude::af_core::test::prelude::Future

#[must_use = "futures do nothing unless you `.await` or poll them"]
#[lang = "future_trait"]pub trait Future {
    type Output;
#[lang = "poll"]    pub fn poll(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<Self::Output>; }

A future represents an asynchronous computation.

A future is a value that may 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.

Associated Types

type Output[src]

The type of value produced on completion.

Loading content...

Required methods

#[lang = "poll"]pub fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>[src]

Attempt 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 awhile, 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.

Loading content...

Trait Implementations

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

Implementations on Foreign Types

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
[src]

type Output = <F as Future>::Output

impl<T> Future for Ready<T>[src]

type Output = T

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

type Output = T

impl<T> Future for Pending<T>[src]

type Output = T

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

type Output = <F as Future>::Output

impl Future for EventListener

type Output = ()

impl<T> Future for Ready<T>

type Output = T

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

type Output = T

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

type Output = Result<usize, Error>

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

type Output = Result<u64, Error>

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

type Output = T

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

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

impl Future for YieldNow

type Output = ()

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

type Output = Result<(), Error>

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

type Output = Result<(), Error>

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

type Output = Result<usize, Error>

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

type Output = Option<T>

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

type Output = Result<usize, Error>

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

type Output = Result<(), Error>

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

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

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

type Output = Result<usize, Error>

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

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

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

type Output = Result<(T1, T2), E>

impl<T> Future for Pending<T>

type Output = T

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

type Output = Result<usize, Error>

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

type Output = T

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

type Output = Result<usize, Error>

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

type Output = Result<(), Error>

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

type Output = Result<usize, Error>

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

type Output = Result<usize, Error>

impl Future for Timer

type Output = Instant

impl<T> Future for Task<T>

type Output = T

impl Future for Sleep[src]

type Output = ()

impl<T> Future for Timeout<T> where
    T: Future
[src]

type Output = Result<<T as Future>::Output, Elapsed>

impl<T> Future for JoinHandle<T>[src]

type Output = Result<T, JoinError>

impl<T> Future for Receiver<T>[src]

type Output = Result<T, RecvError>

impl Future for LocalSet[src]

type Output = ()

impl<S, T> Future for Connection<S, T> where
    T: AsyncRead + AsyncWrite + Unpin,
    S: AsyncRead + AsyncWrite + Unpin
[src]

type Output = Result<(), Error>

impl Future for NoTlsFuture[src]

type Output = Result<NoTlsStream, NoTlsError>

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

type Output = Result<usize, Error>

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

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

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

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

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

type Output = Result<u64, Error>

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

type Output = <St as Stream>::Item

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

type Output = Result<u64, Error>

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

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

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

type Output = C

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

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

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

type Output = <A as Future>::Output

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

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

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

type Output = Result<usize, Error>

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

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

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

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

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

type Output = Vec<<F as Future>::Output, Global>

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

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

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

type Output = ()

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

type Output = Result<usize, Error>

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

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

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

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

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

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

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

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

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

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

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

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

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

type Output = <Fut as Future>::Output

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

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

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

type Output = <St as Stream>::Item

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

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

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

type Output = Option<<F as Future>::Output>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<'_, Si, St, Ok, Error> Future for SendAll<'_, Si, St> where
    St: Stream<Item = Result<Ok, Error>> + Unpin + ?Sized,
    Si: Sink<Ok, Error = Error> + Unpin + ?Sized

type Output = Result<(), Error>

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

type Output = R

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

type Output = Result<usize, Error>

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

type Output = Result<usize, Error>

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

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

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

type Output = Result<(), Error>

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

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

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

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

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

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>

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

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

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

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

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

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

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

type Output = Result<<Fut as Future>::Output, Aborted>

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

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

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

type Output = Result<usize, Error>

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

type Output = Result<usize, Error>

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

type Output = Result<(), Error>

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

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

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

type Output = <Fut as Future>::Output

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

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

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

type Output = Result<(), Error>

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

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

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

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

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

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

impl<T> Future for Ready<T>

type Output = T

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

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

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

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

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

type Output = T

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

type Output = ()

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

type Output = ()

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

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

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

type Output = T

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

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

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

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

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

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

impl<T> Future for Pending<T>

type Output = T

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

type Output = (FromA, FromB)

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

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

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

type Output = ()

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

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

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

type Output = Result<(), Error>

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

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

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

type Output = T

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

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

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

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

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

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

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

type Output = Result<usize, Error>

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

type Output = Result<u64, 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>, 

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

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

type Output = MutexGuard<'a, T>

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

type Output = T

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

type Output = T

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

type Output = ()

impl<T> Future for Receiver<T>

type Output = Result<T, Canceled>

impl<'a> Future for WaitForCancellationFuture<'a>[src]

type Output = ()

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

type Output = O

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

type Output = <F as Future>::Output

impl<'a, T> Future for Data<'a, T> where
    T: Body + Unpin + ?Sized
[src]

type Output = Option<Result<<T as Body>::Data, <T as Body>::Error>>

impl<'a, T> Future for Trailers<'a, T> where
    T: Body + Unpin + ?Sized
[src]

type Output = Result<Option<HeaderMap<HeaderValue>>, <T as Body>::Error>

impl<T> Future for JoinHandle<T>[src]

type Output = Result<T, JoinError>

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

type Output = Result<u64, Error>

impl<T> Future for Timeout<T> where
    T: Future
[src]

type Output = Result<<T as Future>::Output, Elapsed>

impl<T> Future for Receiver<T>[src]

type Output = Result<T, RecvError>

impl Future for Delay[src]

type Output = ()

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

type Output = Result<u64, Error>

impl<I, F, S, FE, E, B> Future for Connecting<I, F, E> where
    E: H2Exec<<S as HttpService<Body>>::Future, B>,
    B: Body + 'static,
    F: Future<Output = Result<S, FE>>,
    S: HttpService<Body, ResBody = B>,
    I: AsyncRead + AsyncWrite + Unpin,
    <B as Body>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>, 
[src]

type Output = Result<Connection<I, S, E>, FE>

impl Future for OnUpgrade[src]

type Output = Result<Upgraded, Error>

impl<T, B> Future for Connection<T, B> where
    B: Body + Send + 'static,
    T: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    <B as Body>::Data: Send,
    <B as Body>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>, 
[src]

type Output = Result<(), Error>

impl<I, B, S, E> Future for Connection<I, S, E> where
    E: H2Exec<<S as HttpService<Body>>::Future, B>,
    B: Body + 'static,
    S: HttpService<Body, ResBody = B>,
    I: AsyncRead + AsyncWrite + Unpin + 'static,
    <S as HttpService<Body>>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>,
    <B as Body>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>, 
[src]

type Output = Result<(), Error>

impl Future for ResponseFuture[src]

type Output = Result<Response<Body>, Error>

impl<I, IO, IE, S, B, E> Future for Server<I, S, E> where
    E: H2Exec<<<S as MakeServiceRef<IO, Body>>::Service as HttpService<Body>>::Future, B> + NewSvcExec<IO, <S as MakeServiceRef<IO, Body>>::Future, <S as MakeServiceRef<IO, Body>>::Service, E, NoopWatcher>,
    B: Body + 'static,
    S: MakeServiceRef<IO, Body, ResBody = B>,
    I: Accept<Conn = IO, Error = IE>,
    IO: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    IE: Into<Box<dyn Error + 'static + Send + Sync, Global>>,
    <S as MakeServiceRef<IO, Body>>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>,
    <B as Body>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>, 
[src]

type Output = Result<(), Error>

impl Future for GaiFuture[src]

type Output = Result<GaiAddrs, Error>

impl Future for ResponseFuture[src]

type Output = Result<Response<Body>, Error>

impl<T> Future for Instrumented<T> where
    T: Future
[src]

type Output = <T as Future>::Output

impl Future for ResponseFuture[src]

type Output = Result<Response<RecvStream>, Error>

impl<T, B> Future for Handshake<T, B> where
    B: Buf + 'static,
    T: AsyncRead + AsyncWrite + Unpin
[src]

type Output = Result<Connection<T, B>, Error>

impl<T, B> Future for Connection<T, B> where
    B: Buf + 'static,
    T: AsyncRead + AsyncWrite + Unpin
[src]

type Output = Result<(), Error>

impl<B> Future for ReadySendRequest<B> where
    B: Buf + 'static, 
[src]

type Output = Result<SendRequest<B>, Error>

impl Future for PushedResponseFuture[src]

type Output = Result<Response<RecvStream>, Error>

impl<T> Future for Instrumented<T> where
    T: Future
[src]

type Output = <T as Future>::Output

impl<T> Future for HttpsConnecting<T> where
    T: Unpin + AsyncRead + AsyncWrite
[src]

type Output = Result<MaybeHttpsStream<T>, Box<dyn Error + 'static + Send + Sync, Global>>

impl<'a, T> Future for Trailers<'a, T> where
    T: Body + Unpin + ?Sized
[src]

type Output = Result<Option<HeaderMap<HeaderValue>>, <T as Body>::Error>

impl<'a, T> Future for Data<'a, T> where
    T: Body + Unpin + ?Sized
[src]

type Output = Option<Result<<T as Body>::Data, <T as Body>::Error>>

impl Future for OnUpgrade[src]

type Output = Result<Upgraded, Error>

impl Future for GaiFuture[src]

type Output = Result<GaiAddrs, Error>

impl Future for ResponseFuture[src]

type Output = Result<Response<Body>, Error>

impl Future for ResponseFuture[src]

type Output = Result<Response<Body>, Error>

impl<T, B> Future for Connection<T, B> where
    B: Body + Send + 'static,
    T: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    <B as Body>::Data: Send,
    <B as Body>::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>, 
[src]

type Output = Result<(), Error>

impl Future for ResponseFuture[src]

type Output = Result<Response<RecvStream>, Error>

impl<B> Future for ReadySendRequest<B> where
    B: Buf + 'static, 
[src]

type Output = Result<SendRequest<B>, Error>

impl<T, B> Future for Connection<T, B> where
    B: Buf + 'static,
    T: AsyncRead + AsyncWrite + Unpin
[src]

type Output = Result<(), Error>

impl<T, B> Future for Handshake<T, B> where
    B: Buf + 'static,
    T: AsyncRead + AsyncWrite + Unpin
[src]

type Output = Result<Connection<T, B>, Error>

impl Future for PushedResponseFuture[src]

type Output = Result<Response<RecvStream>, Error>

impl<T> Future for HttpsConnecting<T> where
    T: Unpin + AsyncRead + AsyncWrite
[src]

type Output = Result<MaybeHttpsStream<T>, Box<dyn Error + 'static + Send + Sync, Global>>

Loading content...

Implementors

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

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

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

type Output = bool

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

type Output = bool

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

type Output = Result<Option<T>, E>

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

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

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

type Output = Option<B>

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

type Output = Result<(), E>

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

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

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

type Output = Option<usize>

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

type Output = Result<B, E>

impl<F> Future for AssertUnwindSafe<F> where
    F: Future
[src]

type Output = <F as Future>::Output

impl<P> Future for Pin<P> where
    P: Unpin + DerefMut,
    <P as Deref>::Target: Future
[src]

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

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

type Output = usize

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

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

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

type Output = (FromA, FromB)

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

type Output = C

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

type Output = ()

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

type Output = T

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

type Output = (B, B)

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

type Output = Result<C, E>

impl<T, I, O, F, M> Future for af_lib::future::MapErr<F, M> where
    F: Future<Output = Result<T, I>>,
    M: FnOnce(I) -> O, 
[src]

type Output = Result<T, O>

Loading content...