#[non_exhaustive]#[repr(i32)]pub enum _ETW_NOTIFICATION_TYPE {
EtwNotificationTypeNoReply = 1,
EtwNotificationTypeLegacyEnable = 2,
EtwNotificationTypeEnable = 3,
EtwNotificationTypePrivateLogger = 4,
EtwNotificationTypePerflib = 5,
EtwNotificationTypeAudio = 6,
EtwNotificationTypeSession = 7,
EtwNotificationTypeReserved = 8,
EtwNotificationTypeCredentialUI = 9,
EtwNotificationTypeInProcSession = 10,
EtwNotificationTypeMax = 11,
}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.
EtwNotificationTypeNoReply = 1
EtwNotificationTypeLegacyEnable = 2
EtwNotificationTypeEnable = 3
EtwNotificationTypePrivateLogger = 4
EtwNotificationTypePerflib = 5
EtwNotificationTypeAudio = 6
EtwNotificationTypeSession = 7
EtwNotificationTypeReserved = 8
EtwNotificationTypeCredentialUI = 9
EtwNotificationTypeInProcSession = 10
EtwNotificationTypeMax = 11
Trait Implementations§
Source§impl Clone for _ETW_NOTIFICATION_TYPE
impl Clone for _ETW_NOTIFICATION_TYPE
Source§fn clone(&self) -> _ETW_NOTIFICATION_TYPE
fn clone(&self) -> _ETW_NOTIFICATION_TYPE
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 _ETW_NOTIFICATION_TYPE
impl Debug for _ETW_NOTIFICATION_TYPE
Source§impl Hash for _ETW_NOTIFICATION_TYPE
impl Hash for _ETW_NOTIFICATION_TYPE
Source§impl PartialEq for _ETW_NOTIFICATION_TYPE
impl PartialEq for _ETW_NOTIFICATION_TYPE
impl Copy for _ETW_NOTIFICATION_TYPE
impl Eq for _ETW_NOTIFICATION_TYPE
impl StructuralPartialEq for _ETW_NOTIFICATION_TYPE
Auto Trait Implementations§
impl Freeze for _ETW_NOTIFICATION_TYPE
impl RefUnwindSafe for _ETW_NOTIFICATION_TYPE
impl Send for _ETW_NOTIFICATION_TYPE
impl Sync for _ETW_NOTIFICATION_TYPE
impl Unpin for _ETW_NOTIFICATION_TYPE
impl UnwindSafe for _ETW_NOTIFICATION_TYPE
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