pub trait ReadWrite: Read + Write { }
Expand description

This trait is created to allow the iterator returned by incoming to iterate over a trait object that implements both Read and Write.

Implementors