pub trait Decompressor: Read + Seek + Send {
    // Required method
    fn get_uncompressed_length(&mut self) -> Result<u64>;
}

Required Methods§

Implementors§