Struct libp2prs_core::transport::upgrade::TransportUpgrade[][src]

pub struct TransportUpgrade<InnerTrans, TMux, TSec> { /* fields omitted */ }

A TransportUpgrade is a Transport that wraps another Transport and adds upgrade capabilities to all inbound and outbound connection attempts.

Implementations

impl<InnerTrans, TMux, TSec> TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: Transport,
    InnerTrans::Output: ConnectionInfo + AsyncRead + AsyncWrite + Unpin,
    TSec: Upgrader<InnerTrans::Output>,
    TSec::Output: SecureInfo + AsyncRead + AsyncWrite + Unpin,
    TMux: Upgrader<TSec::Output>,
    TMux::Output: StreamMuxer
[src]

pub fn new(inner: InnerTrans, mux: TMux, sec: TSec) -> Self[src]

Wraps around a Transport to add upgrade capabilities.

Trait Implementations

impl<InnerTrans: Clone, TMux: Clone, TSec: Clone> Clone for TransportUpgrade<InnerTrans, TMux, TSec>[src]

impl<InnerTrans: Debug, TMux: Debug, TSec: Debug> Debug for TransportUpgrade<InnerTrans, TMux, TSec>[src]

impl<InnerTrans, TMux, TSec> Transport for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: Transport + Clone + 'static,
    InnerTrans::Output: ConnectionInfo + AsyncRead + AsyncWrite + Unpin + 'static,
    TSec: Upgrader<InnerTrans::Output> + 'static,
    TSec::Output: SecureInfo + AsyncRead + AsyncWrite + Unpin,
    TMux: Upgrader<TSec::Output> + 'static,
    TMux::Output: StreamMuxerEx + 'static, 
[src]

type Output = IStreamMuxer

The result of a connection setup process, including protocol upgrades. Read more

Auto Trait Implementations

impl<InnerTrans, TMux, TSec> RefUnwindSafe for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: RefUnwindSafe,
    TMux: RefUnwindSafe,
    TSec: RefUnwindSafe

impl<InnerTrans, TMux, TSec> Send for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: Send,
    TMux: Send,
    TSec: Send

impl<InnerTrans, TMux, TSec> Sync for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: Sync,
    TMux: Sync,
    TSec: Sync

impl<InnerTrans, TMux, TSec> Unpin for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: Unpin,
    TMux: Unpin,
    TSec: Unpin

impl<InnerTrans, TMux, TSec> UnwindSafe for TransportUpgrade<InnerTrans, TMux, TSec> where
    InnerTrans: UnwindSafe,
    TMux: UnwindSafe,
    TSec: UnwindSafe

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