pub struct DecompressionStats {
pub frames_decompressed: u32,
pub total_decompressed_bytes: usize,
pub avg_decompression_time_us: u64,
}
Fields§
§frames_decompressed: u32
Total frames decompressed
total_decompressed_bytes: usize
Total bytes decompressed
avg_decompression_time_us: u64
Average decompression time in microseconds
Trait 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 · 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 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