pub trait CompressionCodecType {
    // Required method
    fn codec_type(&self) -> CodecType
       where Self: Sized;
}
Available on codec_api only.
Expand description

Trait for a codec that implements a known CHD codec type.

Required Methods§

source

fn codec_type(&self) -> CodecType
where Self: Sized,

Returns the known CodecType that this codec implements.

Implementors§