pub trait CompressionHeader: Debug + Pod {
type Word: Into<u64>;
type Endian: Endian;
fn ch_type(&self, endian: Self::Endian) -> u32;
fn ch_size(&self, endian: Self::Endian) -> Self::Word;
fn ch_addralign(&self, endian: Self::Endian) -> Self::Word;
}
Expand description
A trait for generic access to CompressionHeader32
and CompressionHeader64
.