Struct libp2p_core::transport::upgrade::Multiplexed [−][src]
pub struct Multiplexed<T>(_);
A authenticated and multiplexed transport, obtained from
Authenticated::multiplex
.
Implementations
impl<T> Multiplexed<T>
[src]
impl<T> Multiplexed<T>
[src]pub fn boxed<M>(self) -> Boxed<(PeerId, StreamMuxerBox)> where
T: Transport<Output = (PeerId, M)> + Sized + Clone + Send + Sync + 'static,
T::Dial: Send + 'static,
T::Listener: Send + 'static,
T::ListenerUpgrade: Send + 'static,
T::Error: Send + Sync,
M: StreamMuxer + Send + Sync + 'static,
M::Substream: Send + 'static,
M::OutboundSubstream: Send + 'static,
[src]
T: Transport<Output = (PeerId, M)> + Sized + Clone + Send + Sync + 'static,
T::Dial: Send + 'static,
T::Listener: Send + 'static,
T::ListenerUpgrade: Send + 'static,
T::Error: Send + Sync,
M: StreamMuxer + Send + Sync + 'static,
M::Substream: Send + 'static,
M::OutboundSubstream: Send + 'static,
Boxes the authenticated, multiplexed transport, including
the StreamMuxer
and custom transport errors.
pub fn timeout(self, timeout: Duration) -> Multiplexed<TransportTimeout<T>>
[src]
Adds a timeout to the setup and protocol upgrade process for all inbound and outbound connections established through the transport.
pub fn outbound_timeout(
self,
timeout: Duration
) -> Multiplexed<TransportTimeout<T>>
[src]
self,
timeout: Duration
) -> Multiplexed<TransportTimeout<T>>
Adds a timeout to the setup and protocol upgrade process for all outbound connections established through the transport.
pub fn inbound_timeout(
self,
timeout: Duration
) -> Multiplexed<TransportTimeout<T>>
[src]
self,
timeout: Duration
) -> Multiplexed<TransportTimeout<T>>
Adds a timeout to the setup and protocol upgrade process for all inbound connections established through the transport.
Trait Implementations
impl<T: Clone> Clone for Multiplexed<T>
[src]
impl<T: Clone> Clone for Multiplexed<T>
[src]fn clone(&self) -> Multiplexed<T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Transport for Multiplexed<T> where
T: Transport,
[src]
impl<T> Transport for Multiplexed<T> where
T: Transport,
[src]type Output = T::Output
The result of a connection setup process, including protocol upgrades. Read more
type Error = T::Error
An error that occurred during connection setup.
type Listener = T::Listener
type ListenerUpgrade = T::ListenerUpgrade
type Dial = T::Dial
fn dial(
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
fn listen_on(
self,
addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Listener, 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,
Auto Trait Implementations
impl<T> RefUnwindSafe for Multiplexed<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Multiplexed<T> where
T: Send,
T: Send,
impl<T> Sync for Multiplexed<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Multiplexed<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Multiplexed<T> where
T: UnwindSafe,
T: UnwindSafe,