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 more