#[non_exhaustive]pub struct Analysis {
pub format: Format,
pub streams: Vec<StreamAnalysis>,
pub blocks: Vec<BlockAnalysis>,
pub uncompressed_size_in_bytes: u64,
pub compressed_size_in_bytes: u64,
pub backreference_length_counts: [u64; 259],
}Expand description
Complete deterministic structural analysis of an input.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.format: FormatResolved container format.
streams: Vec<StreamAnalysis>Streams in input order.
blocks: Vec<BlockAnalysis>Blocks in input order across every stream.
uncompressed_size_in_bytes: u64Total decompressed size.
compressed_size_in_bytes: u64Total consumed compressed size.
backreference_length_counts: [u64; 259]Exact input-wide counts indexed by reference length from 0 through 258.
Implementations§
Trait Implementations§
impl Eq for Analysis
impl StructuralPartialEq for Analysis
Auto Trait Implementations§
impl Freeze for Analysis
impl RefUnwindSafe for Analysis
impl Send for Analysis
impl Sync for Analysis
impl Unpin for Analysis
impl UnsafeUnpin for Analysis
impl UnwindSafe for Analysis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more