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]

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]

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]

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]

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> 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

A stream of Outputs for inbound connections. Read more

type ListenerUpgrade = T::ListenerUpgrade

A pending Output for an inbound connection, obtained from the Listener stream. Read more

type Dial = T::Dial

A pending Output for an outbound connection, obtained from dialing. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for Multiplexed<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Multiplexed<T> where
    T: Send
[src]

impl<T> Sync for Multiplexed<T> where
    T: Sync
[src]

impl<T> Unpin for Multiplexed<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Multiplexed<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,