pub trait HalfDuplex: Duplex + Read + Write { }
Expand description

A combination of std::io::Read and std::io::Write intended for use in interactive I/O (as opposed to normal file I/O).

Implementors