pub struct ConnectingTransportHandle { /* private fields */ }Expand description
A handle to a transport.
Await this future to be notified when the transport fails.
Dropping this will not remove the transport from the connectors.
Implementations§
Trait Implementations§
source§impl Debug for ConnectingTransportHandle
impl Debug for ConnectingTransportHandle
source§impl IntoFuture for ConnectingTransportHandle
impl IntoFuture for ConnectingTransportHandle
§type IntoFuture = Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'static, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'static, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more