Struct libp2p::mplex::Multiplex

source ·
pub struct Multiplex<C> { /* private fields */ }
Available on crate feature mplex only.
Expand description

Multiplexer. Implements the StreamMuxer trait.

Trait Implementations§

source§

impl<C> StreamMuxer for Multiplex<C>where C: AsyncRead + AsyncWrite + Unpin,

§

type Substream = Substream<C>

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

type Error = Error

Error type of the muxer
source§

fn poll_inbound( self: Pin<&mut Multiplex<C>>, cx: &mut Context<'_> ) -> Poll<Result<<Multiplex<C> as StreamMuxer>::Substream, <Multiplex<C> as StreamMuxer>::Error>>

Poll for new inbound substreams. Read more
source§

fn poll_outbound( self: Pin<&mut Multiplex<C>>, cx: &mut Context<'_> ) -> Poll<Result<<Multiplex<C> as StreamMuxer>::Substream, <Multiplex<C> as StreamMuxer>::Error>>

Poll for a new, outbound substream.
source§

fn poll( self: Pin<&mut Multiplex<C>>, _: &mut Context<'_> ) -> Poll<Result<StreamMuxerEvent, <Multiplex<C> as StreamMuxer>::Error>>

Poll to allow the underlying connection to make progress. Read more
source§

fn poll_close( self: Pin<&mut Multiplex<C>>, cx: &mut Context<'_> ) -> Poll<Result<(), Error>>

Poll to close this StreamMuxer. Read more

Auto Trait Implementations§

§

impl<C> !RefUnwindSafe for Multiplex<C>

§

impl<C> Send for Multiplex<C>where C: Send,

§

impl<C> Sync for Multiplex<C>where C: Send,

§

impl<C> Unpin for Multiplex<C>

§

impl<C> !UnwindSafe for Multiplex<C>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<S> StreamMuxerExt for Swhere S: StreamMuxer,

source§

fn poll_inbound_unpin( &mut self, cx: &mut Context<'_> ) -> Poll<Result<Self::Substream, Self::Error>>where Self: Unpin,

Convenience function for calling StreamMuxer::poll_inbound for StreamMuxers that are Unpin.
source§

fn poll_outbound_unpin( &mut self, cx: &mut Context<'_> ) -> Poll<Result<Self::Substream, Self::Error>>where Self: Unpin,

Convenience function for calling StreamMuxer::poll_outbound for StreamMuxers that are Unpin.
source§

fn poll_unpin( &mut self, cx: &mut Context<'_> ) -> Poll<Result<StreamMuxerEvent, Self::Error>>where Self: Unpin,

Convenience function for calling StreamMuxer::poll for StreamMuxers that are Unpin.
source§

fn poll_close_unpin( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>where Self: Unpin,

Convenience function for calling StreamMuxer::poll_close for StreamMuxers that are Unpin.
source§

fn close(self) -> Close<Self>

Returns a future for closing this StreamMuxer.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more