pub enum AnomalyKind {
NoShadowCopies,
StorePresent {
store_id: String,
sequence: u64,
volume_size: u64,
creation_time: u64,
},
SequenceGap {
previous: u64,
next: u64,
},
StoreNonPersistent {
store_id: String,
attribute_flags: u32,
},
}Expand description
A classified VSS forensic anomaly.
Variants§
NoShadowCopies
The volume carries a VSS volume header but the catalog enumerated zero stores — consistent with shadow-copy deletion (T1490) OR a volume that never had snapshots. Not a determination of deletion.
StorePresent
A shadow-copy store is present.
Fields
SequenceGap
Catalog sequence numbers are non-contiguous — consistent with a deleted intermediate shadow copy.
Fields
StoreNonPersistent
A store lacks the persistent attribute — a non-persistent shadow copy does not survive a reboot, which is unusual for on-disk VSS.
Implementations§
Trait Implementations§
Source§impl Clone for AnomalyKind
impl Clone for AnomalyKind
Source§fn clone(&self) -> AnomalyKind
fn clone(&self) -> AnomalyKind
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 AnomalyKind
impl Debug for AnomalyKind
impl Eq for AnomalyKind
Source§impl PartialEq for AnomalyKind
impl PartialEq for AnomalyKind
impl StructuralPartialEq for AnomalyKind
Auto Trait Implementations§
impl Freeze for AnomalyKind
impl RefUnwindSafe for AnomalyKind
impl Send for AnomalyKind
impl Sync for AnomalyKind
impl Unpin for AnomalyKind
impl UnsafeUnpin for AnomalyKind
impl UnwindSafe for AnomalyKind
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