pub trait CompressionCodecType {
    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

Returns the known CodecType that this codec implements.

Implementors