pub struct CompressionReport {
pub total_files: u64,
pub compressed_files: u64,
pub uncompressed_files: u64,
pub total_dirs: u64,
pub total_bytes_in: u64,
pub total_bytes_out: u64,
pub compressed_bytes: u64,
pub uncompressed_bytes: u64,
pub compression_ratio: f32,
pub chunks: u64,
}Fields§
§total_files: u64§compressed_files: u64§uncompressed_files: u64§total_dirs: u64§total_bytes_in: u64§total_bytes_out: u64§compressed_bytes: u64§uncompressed_bytes: u64§compression_ratio: f32§chunks: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompressionReport
impl RefUnwindSafe for CompressionReport
impl Send for CompressionReport
impl Sync for CompressionReport
impl Unpin for CompressionReport
impl UnwindSafe for CompressionReport
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more