Trait duplex::HalfDuplex

source ·
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§

source§

impl<T: Duplex + Read + Write> HalfDuplex for T