pub trait ReadType {
    type NumType;

    // Required method
    fn read_num<R: Read>(reader: &mut R) -> Result<Self::NumType>;
}

Required Associated Types§

Required Methods§

source

fn read_num<R: Read>(reader: &mut R) -> Result<Self::NumType>

Implementors§