#[non_exhaustive]pub enum HiveTarget {
HklmSystem,
HklmSoftware,
HklmSam,
HklmSecurity,
NtUser,
UsrClass,
Amcache,
Bcd,
None,
}Expand description
Which Windows registry hive an artifact lives in.
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.
HklmSystem
HklmSoftware
HklmSam
HklmSecurity
NtUser
UsrClass
Amcache
Bcd
None
Non-registry artifacts (files, event logs, memory).
Trait Implementations§
Source§impl Clone for HiveTarget
impl Clone for HiveTarget
Source§fn clone(&self) -> HiveTarget
fn clone(&self) -> HiveTarget
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 HiveTarget
Source§impl Debug for HiveTarget
impl Debug for HiveTarget
impl Eq for HiveTarget
Source§impl Hash for HiveTarget
impl Hash for HiveTarget
Source§impl PartialEq for HiveTarget
impl PartialEq for HiveTarget
impl StructuralPartialEq for HiveTarget
Auto Trait Implementations§
impl Freeze for HiveTarget
impl RefUnwindSafe for HiveTarget
impl Send for HiveTarget
impl Sync for HiveTarget
impl Unpin for HiveTarget
impl UnsafeUnpin for HiveTarget
impl UnwindSafe for HiveTarget
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