pub struct OrphanedEntry {
pub version: Version,
pub recorded_ref: String,
}Expand description
Orphaned entry: a Pending ledger entry whose backing ref is absent.
For GitTag entries the tag does not exist in git. For Snapshot entries
no tarball with the recorded SHA-256 exists in the snapshot store.
Fields§
§version: VersionVersion of the orphaned entry.
recorded_ref: StringThe tag ref recorded in the ledger (which does not exist).
Trait Implementations§
Source§impl Clone for OrphanedEntry
impl Clone for OrphanedEntry
Source§fn clone(&self) -> OrphanedEntry
fn clone(&self) -> OrphanedEntry
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 OrphanedEntry
impl RefUnwindSafe for OrphanedEntry
impl Send for OrphanedEntry
impl Sync for OrphanedEntry
impl Unpin for OrphanedEntry
impl UnsafeUnpin for OrphanedEntry
impl UnwindSafe for OrphanedEntry
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