pub trait ReadToVec: Read { // Provided method fn read_to_vec(&mut self) -> Result<Vec<u8>> { ... } }
std
Allows reading an entire IO stream into a vec.
Loads this stream into memory.
An Error is returned if the stream could not be loaded.