Struct libp2p_rs::mplex::connection::Connection [−][src]
Implementations
impl<T> Connection<T> where
T: SplittableReadWrite, [src]
T: SplittableReadWrite,
pub fn new(socket: T) -> Connection<T>[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.
pub async fn handle_coming(&'_ mut self) -> Result<(), ConnectionError>[src]
This is called from Connection::next_stream instead of being a
public method itself in order to guarantee proper closing in
case of an error or at EOF.
impl<T> Connection<T> where
T: SplitEx, [src]
T: SplitEx,
pub fn streams_length(&self) -> usize[src]
Trait Implementations
impl<T> Display for Connection<T> where
T: SplitEx, [src]
T: SplitEx,
Auto Trait Implementations
impl<T> !RefUnwindSafe for Connection<T>
impl<T> Send for Connection<T>
impl<T> !Sync for Connection<T>
impl<T> Unpin for Connection<T>
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> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> Same<T> for T
type Output = T
Should always be Self
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>,
V: MultiLane<T>,