#[non_exhaustive]pub enum SuggestedAction {
Reinstall,
UninstallWithOwner,
RemoveLedgerEntry,
RemoveConfigEntry,
RestoreBackup,
ManualReview,
NoAction,
}Expand description
Suggested follow-up for a validation report.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Reinstall
Reinstall the missing config, directory, or file entry.
UninstallWithOwner
Uninstall using the owner currently recorded in the ledger.
RemoveLedgerEntry
Remove a stale ownership ledger entry.
RemoveConfigEntry
Remove an unowned config, directory, or file entry.
RestoreBackup
Restore a backup before retrying mutation.
ManualReview
Stop and inspect the files manually.
NoAction
No follow-up is needed.
Trait Implementations§
Source§impl Clone for SuggestedAction
impl Clone for SuggestedAction
Source§fn clone(&self) -> SuggestedAction
fn clone(&self) -> SuggestedAction
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 SuggestedAction
impl Debug for SuggestedAction
Source§impl PartialEq for SuggestedAction
impl PartialEq for SuggestedAction
impl Copy for SuggestedAction
impl Eq for SuggestedAction
impl StructuralPartialEq for SuggestedAction
Auto Trait Implementations§
impl Freeze for SuggestedAction
impl RefUnwindSafe for SuggestedAction
impl Send for SuggestedAction
impl Sync for SuggestedAction
impl Unpin for SuggestedAction
impl UnsafeUnpin for SuggestedAction
impl UnwindSafe for SuggestedAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.