Trait AsyncConn

Source
pub trait AsyncConn:
    Read
    + Write
    + Connection
    + Send
    + Sync
    + Unpin
    + 'static { }
Expand description

Trait representing an async connection.

Implementors§

Source§

impl<T: Read + Write + Connection + Send + Sync + Unpin + 'static> AsyncConn for T