[][src]Struct libp2prs_yamux::connection::Connection

pub struct Connection<T: SplitEx> { /* fields omitted */ }

Implementations

impl<T: SplittableReadWrite> Connection<T>[src]

pub fn new(socket: T, cfg: Config, mode: Mode) -> Self[src]

Create a new Connection from the given I/O resource.

pub fn id(&self) -> Id[src]

Returns the id of the connection

pub fn control(&self) -> Control[src]

Get a controller for this connection.

pub async fn next_stream(&mut self) -> Result<(), ConnectionError>[src]

Get the next incoming stream, opened by the remote.

This must be called repeatedly in order to make progress. Once Ok(())) or Err(_) is returned the connection is considered closed and no further invocation of this method must be attempted.

impl<T: SplitEx> Connection<T>[src]

pub fn streams_length(&self) -> usize[src]

Trait Implementations

impl<T: SplitEx> Display for Connection<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Connection<T>[src]

impl<T> Send for Connection<T>[src]

impl<T> !Sync for Connection<T>[src]

impl<T> Unpin for Connection<T>[src]

impl<T> !UnwindSafe for Connection<T>[src]

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,