pub trait ZlibDecompressorExt: 'static {
    fn get_file_info(&self) -> Option<FileInfo>;
    fn get_property_format(&self) -> ZlibCompressorFormat;
    fn connect_property_file_info_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors