AsyncStream

Trait AsyncStream 

Source
pub trait AsyncStream:
    AsyncRead
    + AsyncWrite
    + Unpin
    + Send
    + Sync { }

Trait Implementations§

Source§

impl Debug for dyn AsyncStream

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

Source§

impl<T> AsyncStream for T
where T: AsyncRead + AsyncWrite + Unpin + Send + Sync,