IO

Trait IO 

Source
pub trait IO:
    AsyncWrite
    + AsyncRead
    + Send
    + Unpin
    + 'static { }
Expand description

Input/Output trait using AsyncRead/AsyncWrite

Implementors§

Source§

impl<T> IO for T
where T: AsyncWrite + AsyncRead + Send + Unpin + 'static,