pub enum RegistryOperation {
Create,
Open,
DeleteKey,
QueryKey,
SetValue,
DeleteValue,
QueryValue,
EnumerateKey,
EnumerateValue,
SetInformation,
Unknown,
}Expand description
Decoded operation kind for Registry kernel provider events.
Variants§
Create
Create key operation.
Open
Open key operation.
DeleteKey
Delete key operation.
QueryKey
Query key metadata.
SetValue
Set value data.
DeleteValue
Delete value data.
QueryValue
Query value data.
EnumerateKey
Enumerate subkeys.
EnumerateValue
Enumerate values.
SetInformation
Set key information metadata.
Unknown
Opcode did not match a known registry operation.
Trait Implementations§
Source§impl Clone for RegistryOperation
impl Clone for RegistryOperation
Source§fn clone(&self) -> RegistryOperation
fn clone(&self) -> RegistryOperation
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 RegistryOperation
impl Debug for RegistryOperation
Source§impl PartialEq for RegistryOperation
impl PartialEq for RegistryOperation
impl Copy for RegistryOperation
impl Eq for RegistryOperation
impl StructuralPartialEq for RegistryOperation
Auto Trait Implementations§
impl Freeze for RegistryOperation
impl RefUnwindSafe for RegistryOperation
impl Send for RegistryOperation
impl Sync for RegistryOperation
impl Unpin for RegistryOperation
impl UnsafeUnpin for RegistryOperation
impl UnwindSafe for RegistryOperation
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