Struct libp2p_core::transport::timeout::TransportTimeout [−][src]
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][−]
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: Copy> Copy 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][+]
InnerTrans: Transport,
InnerTrans::Error: 'static,
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,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,