Trait polkadot_node_subsystem::gen::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 poll
ing again. The context
passed to the poll
method can provide a Waker
, which is a handle for waking up the current
task.
When using a future, you generally won’t call poll
directly, but instead
.await
the value.
Required Associated Types§
Required Methods§
sourcefn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>
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:
Poll::Pending
if the future is not ready yetPoll::Ready(val)
with the resultval
of this future if it finished successfully.
Once a future has finished, clients should not poll
it again.
When a future is not ready yet, poll
returns Poll::Pending
and
stores a clone of the Waker
copied from the current Context
.
This Waker
is then woken once the future can make progress.
For example, a future waiting for a socket to become
readable would call .clone()
on the Waker
and store it.
When a signal arrives elsewhere indicating that the socket is readable,
Waker::wake
is called and the socket future’s task is awoken.
Once a task has been woken up, it should attempt to poll
the future
again, which may or may not produce a final value.
Note that on multiple calls to poll
, only the Waker
from the
Context
passed to the most recent call should be scheduled to
receive a wakeup.
Runtime characteristics
Futures alone are inert; they must be actively poll
ed 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.
Trait Implementations§
source§impl<'a, T> UnsafeFutureObj<'a, T> for &'a mut (dyn Future<Output = T> + Unpin)
impl<'a, T> UnsafeFutureObj<'a, T> for &'a mut (dyn Future<Output = T> + Unpin)
source§impl<'a, T> UnsafeFutureObj<'a, T> for Box<dyn Future<Output = T> + Send + 'a, Global>where
T: 'a,
impl<'a, T> UnsafeFutureObj<'a, T> for Box<dyn Future<Output = T> + Send + 'a, Global>where T: 'a,
source§impl<'a, T> UnsafeFutureObj<'a, T> for Pin<&'a mut dyn Future<Output = T>>
impl<'a, T> UnsafeFutureObj<'a, T> for Pin<&'a mut dyn Future<Output = T>>
Implementors§
source§impl Future for PushedResponseFuture
impl Future for PushedResponseFuture
source§impl Future for h2::client::ResponseFuture
impl Future for h2::client::ResponseFuture
source§impl Future for hyper::client::client::ResponseFuture
impl Future for hyper::client::client::ResponseFuture
source§impl Future for hyper::client::conn::ResponseFuture
impl Future for hyper::client::conn::ResponseFuture
source§impl Future for DialFuture
impl Future for DialFuture
type Output = Result<RwStreamSink<Chan<Vec<u8, Global>>>, MemoryTransportError>
source§impl Future for MdnsClientConnect
impl Future for MdnsClientConnect
type Output = Result<MdnsClientStream, ProtoError>
source§impl<'a, R> Future for futures_lite::io::FillBuf<'a, R>where
R: AsyncBufRead + Unpin + ?Sized,
impl<'a, R> Future for futures_lite::io::FillBuf<'a, R>where R: AsyncBufRead + Unpin + ?Sized,
source§impl<'a, R> Future for polkadot_node_subsystem::gen::futures::io::FillBuf<'a, R>where
R: AsyncBufRead + Unpin + ?Sized,
impl<'a, R> Future for polkadot_node_subsystem::gen::futures::io::FillBuf<'a, R>where R: AsyncBufRead + 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>,
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>,
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,
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,
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 BiLockAcquire<'a, T>
impl<'a, T> Future for BiLockAcquire<'a, T>
type Output = BiLockGuard<'a, T>
source§impl<'a, T> Future for MutexLockFuture<'a, T>where
T: ?Sized,
impl<'a, T> Future for MutexLockFuture<'a, T>where T: ?Sized,
type Output = MutexGuard<'a, T>
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>,
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§impl<A, B> Future for polkadot_node_subsystem::gen::futures::prelude::future::Either<A, B>where
A: Future,
B: Future<Output = <A as Future>::Output>,
impl<A, B> Future for polkadot_node_subsystem::gen::futures::prelude::future::Either<A, B>where A: Future, B: Future<Output = <A as Future>::Output>,
source§impl<AFut, BFut, AItem, BItem, AError, BError> Future for EitherFuture2<AFut, BFut>where
AFut: TryFuture<Ok = AItem, Error = AError>,
BFut: TryFuture<Ok = BItem, Error = BError>,
impl<AFut, BFut, AItem, BItem, AError, BError> Future for EitherFuture2<AFut, BFut>where AFut: TryFuture<Ok = AItem, Error = AError>, BFut: TryFuture<Ok = BItem, Error = BError>,
type Output = Result<EitherOutput<AItem, BItem>, EitherError<AError, BError>>
source§impl<AFuture, BFuture, AInner, BInner> Future for EitherFuture<AFuture, BFuture>where
AFuture: TryFuture<Ok = AInner>,
BFuture: TryFuture<Ok = BInner>,
impl<AFuture, BFuture, AInner, BInner> Future for EitherFuture<AFuture, BFuture>where AFuture: TryFuture<Ok = AInner>, BFuture: TryFuture<Ok = BInner>,
type Output = Result<EitherOutput<AInner, BInner>, EitherError<<AFuture as TryFuture>::Error, <BFuture as TryFuture>::Error>>
source§impl<B> Future for ReadySendRequest<B>where
B: Buf,
impl<B> Future for ReadySendRequest<B>where B: Buf,
type Output = Result<SendRequest<B>, Error>
source§impl<B, H, Client> Future for NetworkWorker<B, H, Client>where
B: Block + 'static,
H: ExHashT,
Client: HeaderBackend<B> + 'static,
impl<B, H, Client> Future for NetworkWorker<B, H, Client>where B: Block + 'static, H: ExHashT, Client: HeaderBackend<B> + 'static,
source§impl<C, E> Future for LookupIpFuture<C, E>where
C: DnsHandle<Error = E> + 'static,
E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static,
impl<C, E> Future for LookupIpFuture<C, E>where C: DnsHandle<Error = E> + 'static, E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static,
type Output = Result<LookupIp, ResolveError>
source§impl<C, U> Future for Authenticate<C, U>where
C: AsyncRead + AsyncWrite + Unpin,
U: InboundUpgrade<Negotiated<C>> + OutboundUpgrade<Negotiated<C>, Output = <U as InboundUpgrade<Negotiated<C>>>::Output, Error = <U as InboundUpgrade<Negotiated<C>>>::Error>,
impl<C, U> Future for Authenticate<C, U>where C: AsyncRead + AsyncWrite + Unpin, U: InboundUpgrade<Negotiated<C>> + OutboundUpgrade<Negotiated<C>, Output = <U as InboundUpgrade<Negotiated<C>>>::Output, Error = <U as InboundUpgrade<Negotiated<C>>>::Error>,
type Output = <Either<InboundUpgradeApply<C, U>, OutboundUpgradeApply<C, U>> as Future>::Output
source§impl<C, U> Future for InboundUpgradeApply<C, U>where
C: AsyncRead + AsyncWrite + Unpin,
U: InboundUpgrade<Negotiated<C>>,
impl<C, U> Future for InboundUpgradeApply<C, U>where C: AsyncRead + AsyncWrite + Unpin, U: InboundUpgrade<Negotiated<C>>,
type Output = Result<<U as InboundUpgrade<Negotiated<C>>>::Output, UpgradeError<<U as InboundUpgrade<Negotiated<C>>>::Error>>
source§impl<C, U> Future for OutboundUpgradeApply<C, U>where
C: AsyncRead + AsyncWrite + Unpin,
U: OutboundUpgrade<Negotiated<C>>,
impl<C, U> Future for OutboundUpgradeApply<C, U>where C: AsyncRead + AsyncWrite + Unpin, U: OutboundUpgrade<Negotiated<C>>,
type Output = Result<<U as OutboundUpgrade<Negotiated<C>>>::Output, UpgradeError<<U as OutboundUpgrade<Negotiated<C>>>::Error>>
source§impl<C, U, M, E> Future for Multiplex<C, U>where
C: AsyncRead + AsyncWrite + Unpin,
U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E>,
impl<C, U, M, E> Future for Multiplex<C, U>where C: AsyncRead + AsyncWrite + Unpin, U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E>,
type Output = Result<(PeerId, M), UpgradeError<E>>
source§impl<E, S, T> Future for FirstAnswerFuture<S>where
S: Stream<Item = Result<T, E>, Item = Result<T, E>> + Unpin + Stream,
E: From<ProtoError>,
impl<E, S, T> Future for FirstAnswerFuture<S>where S: Stream<Item = Result<T, E>, Item = Result<T, E>> + Unpin + Stream, E: From<ProtoError>,
source§impl<F> Future for futures_lite::future::CatchUnwind<F>where
F: Future + UnwindSafe,
impl<F> Future for futures_lite::future::CatchUnwind<F>where F: Future + UnwindSafe,
source§impl<F> Future for wasm_timer::timer::ext::Timeout<F>where
F: TryFuture,
<F as TryFuture>::Error: From<Error>,
impl<F> Future for wasm_timer::timer::ext::Timeout<F>where F: TryFuture, <F as TryFuture>::Error: From<Error>,
source§impl<F> Future for OptionFuture<F>where
F: Future,
impl<F> Future for OptionFuture<F>where F: Future,
source§impl<F> Future for TryJoinAll<F>where
F: TryFuture,
impl<F> Future for TryJoinAll<F>where F: TryFuture,
source§impl<F, B, E> Future for tower_http::cors::ResponseFuture<F>where
F: Future<Output = Result<Response<B>, E>>,
B: Default,
impl<F, B, E> Future for tower_http::cors::ResponseFuture<F>where F: Future<Output = Result<Response<B>, E>>, B: Default,
source§impl<F, S, MF> Future for DnsMultiplexerConnect<F, S, MF>where
F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static,
S: DnsClientStream + Unpin + 'static,
MF: MessageFinalizer + Send + Sync + 'static,
impl<F, S, MF> Future for DnsMultiplexerConnect<F, S, MF>where F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static, S: DnsClientStream + Unpin + 'static, MF: MessageFinalizer + Send + Sync + 'static,
type Output = Result<DnsMultiplexer<S, MF>, ProtoError>
source§impl<F, S, TE> Future for DnsExchangeConnect<F, S, TE>where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin,
impl<F, S, TE> Future for DnsExchangeConnect<F, S, TE>where F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin, S: DnsRequestSender + 'static + Send + Unpin, TE: Time + Unpin,
type Output = Result<(DnsExchange, DnsExchangeBackground<S, TE>), ProtoError>
source§impl<F, U, C, D> Future for DialUpgradeFuture<F, U, C>where
F: TryFuture<Ok = (PeerId, C)>,
C: AsyncRead + AsyncWrite + Unpin,
U: OutboundUpgrade<Negotiated<C>, Output = D>,
<U as OutboundUpgrade<Negotiated<C>>>::Error: Error,
impl<F, U, C, D> Future for DialUpgradeFuture<F, U, C>where F: TryFuture<Ok = (PeerId, C)>, C: AsyncRead + AsyncWrite + Unpin, U: OutboundUpgrade<Negotiated<C>, Output = D>, <U as OutboundUpgrade<Negotiated<C>>>::Error: Error,
type Output = Result<(PeerId, D), TransportUpgradeError<<F as TryFuture>::Error, <U as OutboundUpgrade<Negotiated<C>>>::Error>>
source§impl<F, U, C, D> Future for ListenerUpgradeFuture<F, U, C>where
F: TryFuture<Ok = (PeerId, C)>,
C: AsyncRead + AsyncWrite + Unpin,
U: InboundUpgrade<Negotiated<C>, Output = D>,
<U as InboundUpgrade<Negotiated<C>>>::Error: Error,
impl<F, U, C, D> Future for ListenerUpgradeFuture<F, U, C>where F: TryFuture<Ok = (PeerId, C)>, C: AsyncRead + AsyncWrite + Unpin, U: InboundUpgrade<Negotiated<C>, Output = D>, <U as InboundUpgrade<Negotiated<C>>>::Error: Error,
type Output = Result<(PeerId, D), TransportUpgradeError<<F as TryFuture>::Error, <U as InboundUpgrade<Negotiated<C>>>::Error>>
source§impl<Fut1, Fut2> Future for TryFlatten<Fut1, Fut2>where
TryFlatten<Fut1, Fut2>: Future,
impl<Fut1, Fut2> Future for TryFlatten<Fut1, Fut2>where TryFlatten<Fut1, Fut2>: Future,
source§impl<Fut1, Fut2> Future for TryJoin<Fut1, Fut2>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2> Future for TryJoin<Fut1, Fut2>where Fut1: TryFuture, Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
source§impl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F>where
TryFlatten<MapOk<Fut1, F>, Fut2>: Future,
impl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F>where TryFlatten<MapOk<Fut1, F>, Fut2>: Future,
source§impl<Fut1, Fut2, F> Future for OrElse<Fut1, Fut2, F>where
TryFlattenErr<MapErr<Fut1, F>, Fut2>: Future,
impl<Fut1, Fut2, F> Future for OrElse<Fut1, Fut2, F>where TryFlattenErr<MapErr<Fut1, F>, Fut2>: Future,
source§impl<Fut1, Fut2, Fut3> Future for Join3<Fut1, Fut2, Fut3>where
Fut1: Future,
Fut2: Future,
Fut3: Future,
impl<Fut1, Fut2, Fut3> Future for Join3<Fut1, Fut2, Fut3>where Fut1: Future, Fut2: Future, Fut3: Future,
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>,
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§impl<Fut1, Fut2, Fut3, Fut4> Future for Join4<Fut1, Fut2, Fut3, Fut4>where
Fut1: Future,
Fut2: Future,
Fut3: Future,
Fut4: Future,
impl<Fut1, Fut2, Fut3, Fut4> Future for Join4<Fut1, Fut2, Fut3, Fut4>where Fut1: Future, Fut2: Future, Fut3: Future, Fut4: Future,
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>,
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§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,
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§impl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>,
Fut5: TryFuture<Error = <Fut1 as TryFuture>::Error>,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where Fut1: TryFuture, Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>, Fut3: TryFuture<Error = <Fut1 as TryFuture>::Error>, Fut4: TryFuture<Error = <Fut1 as TryFuture>::Error>, Fut5: TryFuture<Error = <Fut1 as TryFuture>::Error>,
source§impl<Fut> Future for TryMaybeDone<Fut>where
Fut: TryFuture,
impl<Fut> Future for TryMaybeDone<Fut>where Fut: TryFuture,
source§impl<Fut> Future for polkadot_node_subsystem::gen::futures::prelude::future::CatchUnwind<Fut>where
Fut: Future + UnwindSafe,
impl<Fut> Future for polkadot_node_subsystem::gen::futures::prelude::future::CatchUnwind<Fut>where Fut: Future + UnwindSafe,
source§impl<Fut> Future for IntoFuture<Fut>where
Fut: TryFuture,
impl<Fut> Future for IntoFuture<Fut>where Fut: TryFuture,
source§impl<Fut> Future for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Future,
impl<Fut> Future for NeverError<Fut>where Map<Fut, OkFn<Infallible>>: Future,
source§impl<Fut, F> Future for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Future,
impl<Fut, F> Future for InspectErr<Fut, F>where Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Future,
source§impl<Fut, F> Future for InspectOk<Fut, F>where
Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Future,
impl<Fut, F> Future for InspectOk<Fut, F>where Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Future,
source§impl<Fut, F> Future for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Future,
impl<Fut, F> Future for UnwrapOrElse<Fut, F>where Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Future,
source§impl<Fut, F, G> Future for MapOkOrElse<Fut, F, G>where
Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Future,
impl<Fut, F, G> Future for MapOkOrElse<Fut, F, G>where Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Future,
source§impl<H, N, E, GlobalIn, GlobalOut> Future for Voter<H, N, E, GlobalIn, GlobalOut>where
E: Environment<H, N>,
H: Clone + Eq + Ord + Debug,
N: Copy + BlockNumberOps + Debug,
GlobalIn: Stream<Item = Result<CommunicationIn<H, N, <E as Environment<H, N>>::Signature, <E as Environment<H, N>>::Id>, <E as Environment<H, N>>::Error>> + Unpin,
GlobalOut: Sink<CommunicationOut<H, N, <E as Environment<H, N>>::Signature, <E as Environment<H, N>>::Id>, Error = <E as Environment<H, N>>::Error> + Unpin,
impl<H, N, E, GlobalIn, GlobalOut> Future for Voter<H, N, E, GlobalIn, GlobalOut>where E: Environment<H, N>, H: Clone + Eq + Ord + Debug, N: Copy + BlockNumberOps + Debug, GlobalIn: Stream<Item = Result<CommunicationIn<H, N, <E as Environment<H, N>>::Signature, <E as Environment<H, N>>::Id>, <E as Environment<H, N>>::Error>> + Unpin, GlobalOut: Sink<CommunicationOut<H, N, <E as Environment<H, N>>::Signature, <E as Environment<H, N>>::Id>, Error = <E as Environment<H, N>>::Error> + Unpin,
source§impl<I, B, S, E> Future for hyper::server::conn::Connection<I, S, E>where
S: HttpService<Body, ResBody = B>,
<S as HttpService<Body>>::Error: Into<Box<dyn Error + Sync + Send, Global>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>,
E: ConnStreamExec<<S as HttpService<Body>>::Future, B>,
impl<I, B, S, E> Future for hyper::server::conn::Connection<I, S, E>where S: HttpService<Body, ResBody = B>, <S as HttpService<Body>>::Error: Into<Box<dyn Error + Sync + Send, Global>>, I: AsyncRead + AsyncWrite + Unpin + 'static, B: Body + 'static, <B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>, E: ConnStreamExec<<S as HttpService<Body>>::Future, B>,
source§impl<I, F, S, FE, E, B> Future for Connecting<I, F, E>where
I: AsyncRead + AsyncWrite + Unpin,
F: Future<Output = Result<S, FE>>,
S: HttpService<Body, ResBody = B>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>,
E: ConnStreamExec<<S as HttpService<Body>>::Future, B>,
impl<I, F, S, FE, E, B> Future for Connecting<I, F, E>where I: AsyncRead + AsyncWrite + Unpin, F: Future<Output = Result<S, FE>>, S: HttpService<Body, ResBody = B>, B: Body + 'static, <B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>, E: ConnStreamExec<<S as HttpService<Body>>::Future, B>,
type Output = Result<Connection<I, S, E>, FE>
source§impl<I, IO, IE, S, B, E> Future for Server<I, S, E>where
I: Accept<Conn = IO, Error = IE>,
IE: Into<Box<dyn Error + Sync + Send, Global>>,
IO: AsyncRead + AsyncWrite + Unpin + Send + 'static,
S: MakeServiceRef<IO, Body, ResBody = B>,
<S as MakeServiceRef<IO, Body>>::Error: Into<Box<dyn Error + Sync + Send, Global>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>,
E: ConnStreamExec<<<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>,
impl<I, IO, IE, S, B, E> Future for Server<I, S, E>where I: Accept<Conn = IO, Error = IE>, IE: Into<Box<dyn Error + Sync + Send, Global>>, IO: AsyncRead + AsyncWrite + Unpin + Send + 'static, S: MakeServiceRef<IO, Body, ResBody = B>, <S as MakeServiceRef<IO, Body>>::Error: Into<Box<dyn Error + Sync + Send, Global>>, B: Body + 'static, <B as Body>::Error: Into<Box<dyn Error + Sync + Send, Global>>, E: ConnStreamExec<<<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>,
source§impl<IO> Future for futures_rustls::FallibleAccept<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for futures_rustls::FallibleAccept<IO>where IO: AsyncRead + AsyncWrite + Unpin,
source§impl<IO> Future for futures_rustls::FallibleConnect<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for futures_rustls::FallibleConnect<IO>where IO: AsyncRead + AsyncWrite + Unpin,
source§impl<IO> Future for futures_rustls::LazyConfigAcceptor<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for futures_rustls::LazyConfigAcceptor<IO>where IO: AsyncRead + AsyncWrite + Unpin,
type Output = Result<StartHandshake<IO>, Error>
source§impl<IO> Future for tokio_rustls::FallibleAccept<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for tokio_rustls::FallibleAccept<IO>where IO: AsyncRead + AsyncWrite + Unpin,
source§impl<IO> Future for tokio_rustls::FallibleConnect<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for tokio_rustls::FallibleConnect<IO>where IO: AsyncRead + AsyncWrite + Unpin,
source§impl<IO> Future for tokio_rustls::LazyConfigAcceptor<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> Future for tokio_rustls::LazyConfigAcceptor<IO>where IO: AsyncRead + AsyncWrite + Unpin,
type Output = Result<StartHandshake<IO>, Error>
source§impl<InnerFut> Future for libp2p_core::transport::timeout::Timeout<InnerFut>where
InnerFut: TryFuture,
impl<InnerFut> Future for libp2p_core::transport::timeout::Timeout<InnerFut>where InnerFut: TryFuture,
source§impl<L, R> Future for either::Either<L, R>where
L: Future,
R: Future<Output = <L as Future>::Output>,
impl<L, R> Future for either::Either<L, R>where L: Future, R: Future<Output = <L as Future>::Output>,
Either<L, R>
is a future if both L
and R
are futures.