pub struct PurgedCheckpoints {
pub slug: String,
pub checkpoints: usize,
pub source_refs: usize,
pub dir: Utf8PathBuf,
}Expand description
One instance’s discarded checkpoint history.
Fields§
§slug: StringThe instance’s slug — its binding record is already archived, so this is the only name that still exists on disk.
checkpoints: usize§source_refs: usizeStore refs the checkpoints held (refs/newgit/checkpoints/<slug>/*).
dir: Utf8PathBufTrait Implementations§
Source§impl Clone for PurgedCheckpoints
impl Clone for PurgedCheckpoints
Source§fn clone(&self) -> PurgedCheckpoints
fn clone(&self) -> PurgedCheckpoints
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PurgedCheckpoints
impl Debug for PurgedCheckpoints
impl Eq for PurgedCheckpoints
Source§impl PartialEq for PurgedCheckpoints
impl PartialEq for PurgedCheckpoints
impl StructuralPartialEq for PurgedCheckpoints
Auto Trait Implementations§
impl Freeze for PurgedCheckpoints
impl RefUnwindSafe for PurgedCheckpoints
impl Send for PurgedCheckpoints
impl Sync for PurgedCheckpoints
impl Unpin for PurgedCheckpoints
impl UnsafeUnpin for PurgedCheckpoints
impl UnwindSafe for PurgedCheckpoints
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