pub struct GeometricPack {
pub stem: String,
pub object_count: usize,
pub mtime_secs: u64,
}Expand description
One local pack considered for geometric repacking.
Fields§
§stem: Stringpack-<hex> stem (no .pack / .idx suffix), matching pack-objects stdin lines.
object_count: usizeNumber of objects in the pack index.
mtime_secs: u64Modification time of the .pack file (seconds), used for include-pack ordering.
Trait Implementations§
Source§impl Clone for GeometricPack
impl Clone for GeometricPack
Source§fn clone(&self) -> GeometricPack
fn clone(&self) -> GeometricPack
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GeometricPack
impl RefUnwindSafe for GeometricPack
impl Send for GeometricPack
impl Sync for GeometricPack
impl Unpin for GeometricPack
impl UnsafeUnpin for GeometricPack
impl UnwindSafe for GeometricPack
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