[][src]Struct libp2p::yamux::Yamux

pub struct Yamux<C>(_, _);

Methods

impl<C> Yamux<C> where
    C: AsyncRead + AsyncWrite + 'static, 
[src]

pub fn new(c: C, cfg: Config, mode: Mode) -> Yamux<C>[src]

Trait Implementations

impl<C> StreamMuxer for Yamux<C> where
    C: AsyncRead + AsyncWrite + 'static, 
[src]

type Substream = StreamHandle<C>

Type of the object that represents the raw substream where data can be read and written.

type OutboundSubstream = FutureResult<Option<<Yamux<C> as StreamMuxer>::Substream>, Error>

Future that will be resolved when the outgoing substream is open.

type Error = Error

Error type of the muxer

Auto Trait Implementations

impl<C> Send for Yamux<C> where
    C: Send

impl<C> Sync for Yamux<C> where
    C: Send

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.