Trait ReadWrite

Source
pub trait ReadWrite: Read + Write { }
Expand description

A combination of the std::io::Read and std::io::Write traits.

Implementors§

Source§

impl<T> ReadWrite for T
where T: Read + Write,