pub trait WriteBytesExt<T>: Write { // Required method fn write_be(&mut self, _: T) -> Result<()>; }
Write extension to write big endian data
Writes T to a bytes stream. Most significant byte first.
T