Struct libp2p_mplex::Multiplex
source · [−]pub struct Multiplex<C> { /* private fields */ }
Expand description
Multiplexer. Implements the StreamMuxer
trait.
Trait Implementations
sourceimpl<C> StreamMuxer for Multiplex<C>where
C: AsyncRead + AsyncWrite + Unpin,
impl<C> StreamMuxer for Multiplex<C>where
C: AsyncRead + AsyncWrite + Unpin,
type Substream = Substream<C>
type Substream = Substream<C>
Type of the object that represents the raw substream where data can be read and written.
sourcefn poll_inbound(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>
fn poll_inbound(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>
Poll for new inbound substreams. Read more
sourcefn poll_outbound(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>
fn poll_outbound(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>
Poll for a new, outbound substream.
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S> StreamMuxerExt for Swhere
S: StreamMuxer,
impl<S> StreamMuxerExt for Swhere
S: StreamMuxer,
sourcefn poll_inbound_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>where
Self: Unpin,
fn poll_inbound_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>where
Self: Unpin,
sourcefn poll_outbound_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>where
Self: Unpin,
fn poll_outbound_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<Self::Substream, Self::Error>>where
Self: Unpin,
sourcefn poll_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<StreamMuxerEvent, Self::Error>>where
Self: Unpin,
fn poll_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<StreamMuxerEvent, Self::Error>>where
Self: Unpin,
sourcefn poll_close_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>where
Self: Unpin,
fn poll_close_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>where
Self: Unpin,
sourcefn next_inbound(&mut self) -> NextInbound<'_, Self>
fn next_inbound(&mut self) -> NextInbound<'_, Self>
👎Deprecated since 0.37.0: This future violates the
StreamMuxer
contract because it doesn’t call StreamMuxer::poll
.Returns a future that resolves to the next inbound
Substream
opened by the remote.sourcefn next_outbound(&mut self) -> NextOutbound<'_, Self>
fn next_outbound(&mut self) -> NextOutbound<'_, Self>
👎Deprecated since 0.37.0: This future violates the
StreamMuxer
contract because it doesn’t call StreamMuxer::poll
.Returns a future that opens a new outbound
Substream
with the remote.sourcefn close(self) -> Close<Self>
fn close(self) -> Close<Self>
Returns a future for closing this
StreamMuxer
.