[][src]Trait async_proxy::general::IOStream

pub trait IOStream: AsyncRead + AsyncWrite + Unpin { }

General trait which implementing type represents something where we can both write to or read from

Implementors

impl<T> IOStream for T where
    T: AsyncRead + AsyncWrite + Unpin
[src]

Auto-impl for types that satisfies the trait IOStream requirements (AsyncRead and AsyncWrite)

Loading content...