pub enum HiveTarget {
HklmSystem,
HklmSoftware,
HklmSam,
HklmSecurity,
NtUser,
UsrClass,
Amcache,
Bcd,
None,
}Expand description
Which Windows registry hive an artifact lives in.
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 · 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 HiveTarget
impl Debug for HiveTarget
Source§impl Hash for HiveTarget
impl Hash for HiveTarget
Source§impl PartialEq for HiveTarget
impl PartialEq for HiveTarget
impl Copy for HiveTarget
impl Eq 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