[][src]Struct libp2p_plaintext::PlainTextOutput

pub struct PlainTextOutput<S> where
    S: AsyncRead + AsyncWrite + Unpin
{ pub stream: RwStreamSink<MapErr<PlainTextMiddleware<S>, fn(_: Error) -> Error>>, pub remote_key: PublicKey, }

Output of the plaintext protocol.

Fields

stream: RwStreamSink<MapErr<PlainTextMiddleware<S>, fn(_: Error) -> Error>>

The plaintext stream.

remote_key: PublicKey

The public key of the remote.

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

impl<S> Unpin for PlainTextOutput<S>

impl<S> UnwindSafe for PlainTextOutput<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>,