Struct yamux::Connection [−][src]
A Yamux connection object.
Wraps the underlying I/O resource and makes progress via its
Connection::next_stream
method which must be called repeatedly
until Ok(None)
signals EOF or an error is encountered.
Implementations
impl<T: AsyncRead + AsyncWrite + Unpin> 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 control(&self) -> Control
[src]
Get a controller for this connection.
pub async fn next_stream(&mut self) -> Result<Option<Stream>, ConnectionError>
[src]
Get the next incoming stream, opened by the remote.
This must be called repeatedly in order to make progress.
Once Ok(None)
or Err(_)
is returned the connection is
considered closed and no further invocation of this method
must be attempted.
Cancellation
Please note that if you poll the returned Future
it must
not be cancelled but polled until Poll::Ready
is returned.
Trait Implementations
impl<T> Debug for Connection<T>
[src]
impl<T> Display for Connection<T>
[src]
impl<T> Drop for Connection<T>
[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for Connection<T>
impl<T> Send for Connection<T> where
T: Send,
T: Send,
impl<T> Sync for Connection<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Connection<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for Connection<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,