pub struct BlobStat {
pub oid: ObjectId,
pub size: u64,
pub example_path: String,
pub commit_count: usize,
}Expand description
One blob’s aggregate stats in ScanReport.
Fields§
§oid: ObjectIdThe blob object id (hex via Display).
size: u64Uncompressed object size in bytes (from the odb header — no full read).
example_path: StringOne repo path this blob is stored at (first seen; illustrative).
commit_count: usizeHow many reachable commits contain this blob in their tree.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlobStat
impl RefUnwindSafe for BlobStat
impl Send for BlobStat
impl Sync for BlobStat
impl Unpin for BlobStat
impl UnsafeUnpin for BlobStat
impl UnwindSafe for BlobStat
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