#[non_exhaustive]#[repr(i32)]pub enum _WNF_DATA_SCOPE {
WnfDataScopeSystem = 0,
WnfDataScopeSession = 1,
WnfDataScopeUser = 2,
WnfDataScopeProcess = 3,
WnfDataScopeMachine = 4,
WnfDataScopePhysicalMachine = 5,
}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.
WnfDataScopeSystem = 0
WnfDataScopeSession = 1
WnfDataScopeUser = 2
WnfDataScopeProcess = 3
WnfDataScopeMachine = 4
WnfDataScopePhysicalMachine = 5
Trait Implementations§
Source§impl Clone for _WNF_DATA_SCOPE
impl Clone for _WNF_DATA_SCOPE
Source§fn clone(&self) -> _WNF_DATA_SCOPE
fn clone(&self) -> _WNF_DATA_SCOPE
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 _WNF_DATA_SCOPE
impl Debug for _WNF_DATA_SCOPE
Source§impl Hash for _WNF_DATA_SCOPE
impl Hash for _WNF_DATA_SCOPE
Source§impl PartialEq for _WNF_DATA_SCOPE
impl PartialEq for _WNF_DATA_SCOPE
impl Copy for _WNF_DATA_SCOPE
impl Eq for _WNF_DATA_SCOPE
impl StructuralPartialEq for _WNF_DATA_SCOPE
Auto Trait Implementations§
impl Freeze for _WNF_DATA_SCOPE
impl RefUnwindSafe for _WNF_DATA_SCOPE
impl Send for _WNF_DATA_SCOPE
impl Sync for _WNF_DATA_SCOPE
impl Unpin for _WNF_DATA_SCOPE
impl UnwindSafe for _WNF_DATA_SCOPE
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