pub enum RefFileStatus {
Evaluated {
ref_name: String,
},
Failed {
message: String,
},
}Expand description
Outcome of attempting to read one pointer or log entry (DC-95 Stage 2 Level 2). path is a
display-only locator (the owning container’s own path, plus the specific record’s byte offset
where one exists) – not a real per-ref filesystem path, the same repurposing Stage 3 already made
for ObjectItemOutcome::path, since a container holds many refs’ records, not one file per ref.
Variants§
Evaluated
The entry was read and validated successfully.
Failed
Some check for this specific entry failed.
Trait Implementations§
Source§impl Clone for RefFileStatus
impl Clone for RefFileStatus
Source§fn clone(&self) -> RefFileStatus
fn clone(&self) -> RefFileStatus
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 RefFileStatus
impl Debug for RefFileStatus
impl Eq for RefFileStatus
Source§impl PartialEq for RefFileStatus
impl PartialEq for RefFileStatus
impl StructuralPartialEq for RefFileStatus
Auto Trait Implementations§
impl Freeze for RefFileStatus
impl RefUnwindSafe for RefFileStatus
impl Send for RefFileStatus
impl Sync for RefFileStatus
impl Unpin for RefFileStatus
impl UnsafeUnpin for RefFileStatus
impl UnwindSafe for RefFileStatus
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