pub trait ReadBytesExt<T>: Read { // Required method fn read_be(&mut self) -> Result<T>; }
Read extension to read big endian data
Read T from a bytes stream. Most significant byte first.
T