pub struct BatchStats {
pub zips_processed: usize,
pub entries_extracted: usize,
pub compressed_bytes_read: u64,
pub decompressed_bytes_written: u64,
pub elapsed_secs: f64,
}Expand description
Statistics returned after batch extraction.
Fields§
§zips_processed: usize§entries_extracted: usize§compressed_bytes_read: u64§decompressed_bytes_written: u64§elapsed_secs: f64Implementations§
Source§impl BatchStats
impl BatchStats
pub fn throughput_mb_per_sec(&self) -> f64
Trait Implementations§
Source§impl Debug for BatchStats
impl Debug for BatchStats
Source§impl Default for BatchStats
impl Default for BatchStats
Source§fn default() -> BatchStats
fn default() -> BatchStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchStats
impl RefUnwindSafe for BatchStats
impl Send for BatchStats
impl Sync for BatchStats
impl Unpin for BatchStats
impl UnsafeUnpin for BatchStats
impl UnwindSafe for BatchStats
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