//! Provides [`ComprInfo`] structure and compression algorithm identifier constants.
useder::Sequence;/// An algorithm identifier for LZFSE.
pubconstCOMPR_ALGO_LZFSE:u32=1;/// Compression info structure from iOS 10 that may be present in Image4 payloads.
#[derive(Clone, Eq, PartialEq, Hash, Debug, Sequence)]pubstructComprInfo{/// Algorithm identifier. Currently only [`COMPR_ALGO_LZFSE`] is known.
pubalgo:u32,
/// Size of the uncompressed payload contents.
pubuncompressed_size:u32,
}