Struct libp2p_core::transport::upgrade::Multiplexed [−][src]
A authenticated and multiplexed transport, obtained from
Authenticated::multiplex
.
Implementations
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]
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]
T: Transport,
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,
[src]
T: RefUnwindSafe,
impl<T> Send for Multiplexed<T> where
T: Send,
[src]
T: Send,
impl<T> Sync for Multiplexed<T> where
T: Sync,
[src]
T: Sync,
impl<T> Unpin for Multiplexed<T> where
T: Unpin,
[src]
T: Unpin,
impl<T> UnwindSafe for Multiplexed<T> where
T: UnwindSafe,
[src]
T: 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> 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>,