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) -> TransportTimeout<InnerTrans>
[src]
Wraps around a Transport
to add timeouts to all the sockets created by it.
pub fn with_outgoing_timeout(
trans: InnerTrans,
timeout: Duration
) -> TransportTimeout<InnerTrans>
[src]
trans: InnerTrans,
timeout: Duration
) -> TransportTimeout<InnerTrans>
Wraps around a Transport
to add timeouts to the outgoing connections.
pub fn with_ingoing_timeout(
trans: InnerTrans,
timeout: Duration
) -> TransportTimeout<InnerTrans>
[src]
trans: InnerTrans,
timeout: Duration
) -> TransportTimeout<InnerTrans>
Wraps around a Transport
to add timeouts to the ingoing connections.
Trait Implementations
impl<InnerTrans> Clone for TransportTimeout<InnerTrans> where
InnerTrans: Clone,
[src]
impl<InnerTrans> Clone for TransportTimeout<InnerTrans> where
InnerTrans: Clone,
[src]pub fn clone(&self) -> TransportTimeout<InnerTrans>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<InnerTrans> Debug for TransportTimeout<InnerTrans> where
InnerTrans: Debug,
[src]
impl<InnerTrans> Debug for TransportTimeout<InnerTrans> where
InnerTrans: Debug,
[src]impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
InnerTrans: Transport,
<InnerTrans as Transport>::Error: 'static,
[src]
impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
InnerTrans: Transport,
<InnerTrans as Transport>::Error: 'static,
[src]type Output = <InnerTrans as Transport>::Output
The result of a connection setup process, including protocol upgrades. Read more
type Error = TransportTimeoutError<<InnerTrans as Transport>::Error>
An error that occurred during connection setup.
type Listener = TimeoutListener<<InnerTrans as Transport>::Listener>
type ListenerUpgrade = Timeout<<InnerTrans as Transport>::ListenerUpgrade>
type Dial = Timeout<<InnerTrans as Transport>::Dial>
pub fn listen_on(
self,
addr: Multiaddr
) -> Result<<TransportTimeout<InnerTrans> as Transport>::Listener, TransportError<<TransportTimeout<InnerTrans> as Transport>::Error>>
[src]
self,
addr: Multiaddr
) -> Result<<TransportTimeout<InnerTrans> as Transport>::Listener, TransportError<<TransportTimeout<InnerTrans> as Transport>::Error>>
pub fn dial(
self,
addr: Multiaddr
) -> Result<<TransportTimeout<InnerTrans> as Transport>::Dial, TransportError<<TransportTimeout<InnerTrans> as Transport>::Error>>
[src]
self,
addr: Multiaddr
) -> Result<<TransportTimeout<InnerTrans> as Transport>::Dial, TransportError<<TransportTimeout<InnerTrans> as Transport>::Error>>
pub fn address_translation(
&self,
server: &Multiaddr,
observed: &Multiaddr
) -> Option<Multiaddr>
[src]
&self,
server: &Multiaddr,
observed: &Multiaddr
) -> Option<Multiaddr>
pub fn boxed(self) -> Boxed<Self::Output> where
Self: Transport + Clone + Send + Sync + 'static,
Self::Dial: Send,
Self::Dial: 'static,
Self::Listener: Send,
Self::Listener: 'static,
Self::ListenerUpgrade: Send,
Self::ListenerUpgrade: 'static,
Self::Error: Send,
Self::Error: Sync,
[src]
Self: Transport + Clone + Send + Sync + 'static,
Self::Dial: Send,
Self::Dial: 'static,
Self::Listener: Send,
Self::Listener: 'static,
Self::ListenerUpgrade: Send,
Self::ListenerUpgrade: 'static,
Self::Error: Send,
Self::Error: Sync,
pub fn map<F, O>(self, f: F) -> Map<Self, F> where
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
[src]
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
pub fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
F: FnOnce(Self::Error) -> E + Clone,
[src]
F: FnOnce(Self::Error) -> E + Clone,
pub fn or_transport<U>(self, other: U) -> OrTransport<Self, U> where
U: Transport,
<U as Transport>::Error: 'static,
[src]
U: Transport,
<U as Transport>::Error: 'static,
pub fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C> where
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error,
<F as TryFuture>::Error: 'static,
[src]
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error,
<F as TryFuture>::Error: 'static,
pub fn upgrade(self, version: Version) -> Builder<Self> where
Self::Error: 'static,
[src]
Self::Error: 'static,
impl<InnerTrans> Copy for TransportTimeout<InnerTrans> where
InnerTrans: Copy,
[src]
InnerTrans: Copy,
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,