pub struct DecompressionStats {
pub compressed_size: usize,
pub decompressed_size: usize,
pub patterns_applied: usize,
}Expand description
Decompression statistics.
Fields§
§compressed_size: usize§decompressed_size: usize§patterns_applied: usizeTrait Implementations§
Source§impl Clone for DecompressionStats
impl Clone for DecompressionStats
Source§fn clone(&self) -> DecompressionStats
fn clone(&self) -> DecompressionStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecompressionStats
impl Debug for DecompressionStats
Source§impl Default for DecompressionStats
impl Default for DecompressionStats
Source§fn default() -> DecompressionStats
fn default() -> DecompressionStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DecompressionStats
impl RefUnwindSafe for DecompressionStats
impl Send for DecompressionStats
impl Sync for DecompressionStats
impl Unpin for DecompressionStats
impl UnsafeUnpin for DecompressionStats
impl UnwindSafe for DecompressionStats
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