pub struct PackStats {
pub object_count: u64,
pub total_uncompressed: u64,
pub total_compressed: u64,
pub delta_count: u64,
pub compression_ratio: f64,
}Expand description
Pack statistics.
Fields§
§object_count: u64§total_uncompressed: u64§total_compressed: u64§delta_count: u64§compression_ratio: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackStats
impl RefUnwindSafe for PackStats
impl Send for PackStats
impl Sync for PackStats
impl Unpin for PackStats
impl UnsafeUnpin for PackStats
impl UnwindSafe for PackStats
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