pub trait ReadFrom: Sized { // Required method fn read_from<R: Read>(r: &mut R) -> Result<Self>; }
Read a type from a reader.