Trait ipp::ReadIppExt [] [src]

pub trait ReadIppExt: Read {
    fn read_string(&mut self, len: usize) -> Result<String> { ... }
    fn read_vec(&mut self, len: usize) -> Result<Vec<u8>> { ... }
}

Trait which adds two methods to Read implementations: read_string and read_vec

Provided Methods

Implementors