pub enum ScanOutcomeKind {
New,
Unchanged,
Stale,
Unsupported,
PermissionDenied,
Failed,
}Expand description
Per-file classification produced during a scan.
Variants§
Trait Implementations§
Source§impl Clone for ScanOutcomeKind
impl Clone for ScanOutcomeKind
Source§fn clone(&self) -> ScanOutcomeKind
fn clone(&self) -> ScanOutcomeKind
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 moreimpl Copy for ScanOutcomeKind
Source§impl Debug for ScanOutcomeKind
impl Debug for ScanOutcomeKind
impl Eq for ScanOutcomeKind
Source§impl PartialEq for ScanOutcomeKind
impl PartialEq for ScanOutcomeKind
Source§fn eq(&self, other: &ScanOutcomeKind) -> bool
fn eq(&self, other: &ScanOutcomeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScanOutcomeKind
Auto Trait Implementations§
impl Freeze for ScanOutcomeKind
impl RefUnwindSafe for ScanOutcomeKind
impl Send for ScanOutcomeKind
impl Sync for ScanOutcomeKind
impl Unpin for ScanOutcomeKind
impl UnsafeUnpin for ScanOutcomeKind
impl UnwindSafe for ScanOutcomeKind
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