Struct libp2p_core::transport::timeout::TransportTimeout [−][src]
pub struct TransportTimeout<InnerTrans> { /* fields omitted */ }
A TransportTimeout
is a Transport
that wraps another Transport
and adds
timeouts to all inbound and outbound connection attempts.
Note: listen_on
is never subject to a timeout, only the setup of each
individual accepted connection.
Implementations
impl<InnerTrans> TransportTimeout<InnerTrans>
[src]
impl<InnerTrans> TransportTimeout<InnerTrans>
[src]pub fn new(trans: InnerTrans, timeout: Duration) -> Self
[src]
Wraps around a Transport
to add timeouts to all the sockets created by it.
pub fn with_outgoing_timeout(trans: InnerTrans, timeout: Duration) -> Self
[src]
Wraps around a Transport
to add timeouts to the outgoing connections.
pub fn with_ingoing_timeout(trans: InnerTrans, timeout: Duration) -> Self
[src]
Wraps around a Transport
to add timeouts to the ingoing connections.
Trait Implementations
impl<InnerTrans: Clone> Clone for TransportTimeout<InnerTrans>
[src]
impl<InnerTrans: Clone> Clone for TransportTimeout<InnerTrans>
[src]fn clone(&self) -> TransportTimeout<InnerTrans>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<InnerTrans: Debug> Debug for TransportTimeout<InnerTrans>
[src]
impl<InnerTrans: Debug> Debug for TransportTimeout<InnerTrans>
[src]impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
InnerTrans: Transport,
InnerTrans::Error: 'static,
[src]
impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
InnerTrans: Transport,
InnerTrans::Error: 'static,
[src]type Output = InnerTrans::Output
The result of a connection setup process, including protocol upgrades. Read more
type Error = TransportTimeoutError<InnerTrans::Error>
An error that occurred during connection setup.
type Listener = TimeoutListener<InnerTrans::Listener>
type ListenerUpgrade = Timeout<InnerTrans::ListenerUpgrade>
type Dial = Timeout<InnerTrans::Dial>
fn listen_on(
self,
addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>>
fn dial(
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
fn address_translation(
&self,
server: &Multiaddr,
observed: &Multiaddr
) -> Option<Multiaddr>
[src]
&self,
server: &Multiaddr,
observed: &Multiaddr
) -> Option<Multiaddr>
fn boxed(self) -> Boxed<Self::Output> where
Self: Transport + Sized + Clone + Send + Sync + 'static,
Self::Dial: Send + 'static,
Self::Listener: Send + 'static,
Self::ListenerUpgrade: Send + 'static,
Self::Error: Send + Sync,
[src]
Self: Transport + Sized + Clone + Send + Sync + 'static,
Self::Dial: Send + 'static,
Self::Listener: Send + 'static,
Self::ListenerUpgrade: Send + 'static,
Self::Error: Send + Sync,
fn map<F, O>(self, f: F) -> Map<Self, F> where
Self: Sized,
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
[src]
Self: Sized,
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> E + Clone,
[src]
Self: Sized,
F: FnOnce(Self::Error) -> E + Clone,
fn or_transport<U>(self, other: U) -> OrTransport<Self, U> where
Self: Sized,
U: Transport,
<U as Transport>::Error: 'static,
[src]
Self: Sized,
U: Transport,
<U as Transport>::Error: 'static,
fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C> where
Self: Sized,
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error + 'static,
[src]
Self: Sized,
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error + 'static,
fn upgrade(self, version: Version) -> Builder<Self> where
Self: Sized,
Self::Error: 'static,
[src]
Self: Sized,
Self::Error: 'static,
impl<InnerTrans: Copy> Copy for TransportTimeout<InnerTrans>
[src]
Auto Trait Implementations
impl<InnerTrans> RefUnwindSafe for TransportTimeout<InnerTrans> where
InnerTrans: RefUnwindSafe,
InnerTrans: RefUnwindSafe,
impl<InnerTrans> Send for TransportTimeout<InnerTrans> where
InnerTrans: Send,
InnerTrans: Send,
impl<InnerTrans> Sync for TransportTimeout<InnerTrans> where
InnerTrans: Sync,
InnerTrans: Sync,
impl<InnerTrans> Unpin for TransportTimeout<InnerTrans> where
InnerTrans: Unpin,
InnerTrans: Unpin,
impl<InnerTrans> UnwindSafe for TransportTimeout<InnerTrans> where
InnerTrans: UnwindSafe,
InnerTrans: UnwindSafe,