pub struct RefRecoveryCandidate {
pub ref_name: String,
pub ref_state_id: ObjectId,
pub target_object_id: ObjectId,
pub update_seq: u64,
}Expand description
Diagnostic ref candidate derived from an append-only format-1 ref log.
Fields§
§ref_name: StringHuman-readable ref name.
ref_state_id: ObjectIdRefState ID selected by the latest valid ref-log record.
target_object_id: ObjectIdTarget Block ID selected by the RefState.
update_seq: u64Update sequence of the latest ref-log record.
Trait Implementations§
Source§impl Clone for RefRecoveryCandidate
impl Clone for RefRecoveryCandidate
Source§fn clone(&self) -> RefRecoveryCandidate
fn clone(&self) -> RefRecoveryCandidate
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 RefRecoveryCandidate
impl Debug for RefRecoveryCandidate
impl Eq for RefRecoveryCandidate
Source§impl PartialEq for RefRecoveryCandidate
impl PartialEq for RefRecoveryCandidate
impl StructuralPartialEq for RefRecoveryCandidate
Auto Trait Implementations§
impl Freeze for RefRecoveryCandidate
impl RefUnwindSafe for RefRecoveryCandidate
impl Send for RefRecoveryCandidate
impl Sync for RefRecoveryCandidate
impl Unpin for RefRecoveryCandidate
impl UnsafeUnpin for RefRecoveryCandidate
impl UnwindSafe for RefRecoveryCandidate
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