Trait NetworkStream

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

Used by Client to represent types that are Read and Write.

Implementors§

Source§

impl<S> NetworkStream for S
where S: Read + Write,