pub enum RecoveryIssueKind {
RecoveryTrailMissing,
IncompleteInstall,
Conflict,
DiskDrift,
}Expand description
Recovery issue buckets used to classify doctor findings.
Variants§
RecoveryTrailMissing
The repair trail or journal was missing.
IncompleteInstall
The install is incomplete.
Conflict
A recovery conflict exists between stored state and the filesystem.
DiskDrift
The filesystem content drifted from recorded expectations.
Trait Implementations§
Source§impl Clone for RecoveryIssueKind
impl Clone for RecoveryIssueKind
Source§fn clone(&self) -> RecoveryIssueKind
fn clone(&self) -> RecoveryIssueKind
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 moreSource§impl Debug for RecoveryIssueKind
impl Debug for RecoveryIssueKind
Source§impl<'de> Deserialize<'de> for RecoveryIssueKind
impl<'de> Deserialize<'de> for RecoveryIssueKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RecoveryIssueKind
impl PartialEq for RecoveryIssueKind
Source§impl Serialize for RecoveryIssueKind
impl Serialize for RecoveryIssueKind
impl Copy for RecoveryIssueKind
impl Eq for RecoveryIssueKind
impl StructuralPartialEq for RecoveryIssueKind
Auto Trait Implementations§
impl Freeze for RecoveryIssueKind
impl RefUnwindSafe for RecoveryIssueKind
impl Send for RecoveryIssueKind
impl Sync for RecoveryIssueKind
impl Unpin for RecoveryIssueKind
impl UnwindSafe for RecoveryIssueKind
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