pub struct Yamux<S> { /* private fields */ }
Expand description
A Yamux connection.
Trait Implementations§
source§impl<S> StreamMuxer for Yamux<S>where
S: Stream<Item = Result<Stream, YamuxError>> + Unpin,
impl<S> StreamMuxer for Yamux<S>where S: Stream<Item = Result<Stream, YamuxError>> + Unpin,
§type Substream = Stream
type Substream = Stream
Type of the object that represents the raw substream where data can be read and written.
§type Error = YamuxError
type Error = YamuxError
Error type of the muxer
source§fn poll_inbound(
self: Pin<&mut Yamux<S>>,
cx: &mut Context<'_>
) -> Poll<Result<<Yamux<S> as StreamMuxer>::Substream, <Yamux<S> as StreamMuxer>::Error>>
fn poll_inbound( self: Pin<&mut Yamux<S>>, cx: &mut Context<'_> ) -> Poll<Result<<Yamux<S> as StreamMuxer>::Substream, <Yamux<S> as StreamMuxer>::Error>>
Poll for new inbound substreams. Read more
source§fn poll_outbound(
self: Pin<&mut Yamux<S>>,
cx: &mut Context<'_>
) -> Poll<Result<<Yamux<S> as StreamMuxer>::Substream, <Yamux<S> as StreamMuxer>::Error>>
fn poll_outbound( self: Pin<&mut Yamux<S>>, cx: &mut Context<'_> ) -> Poll<Result<<Yamux<S> as StreamMuxer>::Substream, <Yamux<S> as StreamMuxer>::Error>>
Poll for a new, outbound substream.
source§fn poll(
self: Pin<&mut Yamux<S>>,
cx: &mut Context<'_>
) -> Poll<Result<StreamMuxerEvent, <Yamux<S> as StreamMuxer>::Error>>
fn poll( self: Pin<&mut Yamux<S>>, cx: &mut Context<'_> ) -> Poll<Result<StreamMuxerEvent, <Yamux<S> as StreamMuxer>::Error>>
Poll to allow the underlying connection to make progress. Read more
source§fn poll_close(
self: Pin<&mut Yamux<S>>,
c: &mut Context<'_>
) -> Poll<Result<(), YamuxError>>
fn poll_close( self: Pin<&mut Yamux<S>>, c: &mut Context<'_> ) -> Poll<Result<(), YamuxError>>
Poll to close this
StreamMuxer
. Read moreAuto Trait Implementations§
impl<S> !RefUnwindSafe for Yamux<S>
impl<S> Send for Yamux<S>where S: Send,
impl<S> Sync for Yamux<S>where S: Sync,
impl<S> Unpin for Yamux<S>where S: Unpin,
impl<S> !UnwindSafe for Yamux<S>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more