[][src]Struct libp2p_pnet::PnetOutput

pub struct PnetOutput<S> { /* fields omitted */ }

The result of a handshake. This implements AsyncRead and AsyncWrite and can therefore be used as base for additional upgrades.

Trait Implementations

impl<S: AsyncRead + AsyncWrite> AsyncRead for PnetOutput<S>[src]

impl<S: AsyncRead + AsyncWrite> AsyncWrite for PnetOutput<S>[src]

impl<S> PinnedDrop for PnetOutput<S>[src]

impl<'pin, S> Unpin for PnetOutput<S> where
    __PnetOutput<'pin, S>: Unpin
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for PnetOutput<S> where
    S: RefUnwindSafe

impl<S> Send for PnetOutput<S> where
    S: Send

impl<S> Sync for PnetOutput<S> where
    S: Sync

impl<S> UnwindSafe for PnetOutput<S> where
    S: UnwindSafe

Blanket Implementations

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

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?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, 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>,