pub struct RepoStats {
pub loose_objects: u64,
pub loose_size: u64,
pub packed_objects: u64,
pub pack_size: u64,
}Expand description
Git repository statistics from count-objects
Fields§
§loose_objects: u64Number of loose objects
loose_size: u64Size of loose objects in bytes
packed_objects: u64Number of packed objects
pack_size: u64Size of pack files in bytes
Auto Trait Implementations§
impl Freeze for RepoStats
impl RefUnwindSafe for RepoStats
impl Send for RepoStats
impl Sync for RepoStats
impl Unpin for RepoStats
impl UnwindSafe for RepoStats
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<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more