pub trait ReadWrite: Read + Write { }
Dummy trait that regroups the Read and Write traits.
Read
Write
Automatically implemented on all types that implement both Read and Write.