Struct libp2p_rs::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]
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]
InnerTrans: Clone,
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]
InnerTrans: Debug,
impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
InnerTrans: Transport + Clone + 'static,
<InnerTrans as Transport>::Output: ConnectionInfo,
<InnerTrans as Transport>::Output: 'static,
[src]
InnerTrans: Transport + Clone + 'static,
<InnerTrans as Transport>::Output: ConnectionInfo,
<InnerTrans as Transport>::Output: 'static,
type Output = <InnerTrans as Transport>::Output
The result of a connection setup process, including protocol upgrades. Read more
pub fn listen_on(
&mut self,
addr: Multiaddr
) -> Result<Box<dyn TransportListener<Output = <TransportTimeout<InnerTrans> as Transport>::Output> + 'static + Send, Global>, TransportError>
[src]
&mut self,
addr: Multiaddr
) -> Result<Box<dyn TransportListener<Output = <TransportTimeout<InnerTrans> as Transport>::Output> + 'static + Send, Global>, TransportError>
Creates a IListener with timeout parameter, which will be used for Ilistener to accept new connections.
pub fn dial<'life0, 'async_trait>(
&'life0 mut self,
addr: Multiaddr
) -> Pin<Box<dyn Future<Output = Result<<TransportTimeout<InnerTrans> as Transport>::Output, TransportError>> + 'async_trait + Send, Global>> where
'life0: 'async_trait,
TransportTimeout<InnerTrans>: 'async_trait,
[src]
&'life0 mut self,
addr: Multiaddr
) -> Pin<Box<dyn Future<Output = Result<<TransportTimeout<InnerTrans> as Transport>::Output, TransportError>> + 'async_trait + Send, Global>> where
'life0: 'async_trait,
TransportTimeout<InnerTrans>: 'async_trait,
Creates a new outgoing connection, with the specified timeout parameter.
pub fn box_clone(
&self
) -> Box<dyn Transport<Output = <TransportTimeout<InnerTrans> as Transport>::Output> + 'static + Send, Global>
[src]
&self
) -> Box<dyn Transport<Output = <TransportTimeout<InnerTrans> as Transport>::Output> + 'static + Send, Global>
pub fn protocols(&self) -> Vec<u32, Global>
[src]
pub fn timeout(self, timeout: Duration) -> TransportTimeout<Self>
[src]
pub fn outbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>
[src]
pub fn inbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>
[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,
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,