#[non_exhaustive]pub enum DeclaredAspect {
Wow64Redirection,
MemoryPriority,
BackgroundMode,
}Expand description
Which declared aspect an operation concerned.
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.
Wow64Redirection
WOW64 filesystem redirection.
MemoryPriority
Thread memory priority.
BackgroundMode
Background processing mode.
Trait Implementations§
Source§impl Clone for DeclaredAspect
impl Clone for DeclaredAspect
Source§fn clone(&self) -> DeclaredAspect
fn clone(&self) -> DeclaredAspect
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 DeclaredAspect
Source§impl Debug for DeclaredAspect
impl Debug for DeclaredAspect
impl Eq for DeclaredAspect
Source§impl Hash for DeclaredAspect
impl Hash for DeclaredAspect
Source§impl PartialEq for DeclaredAspect
impl PartialEq for DeclaredAspect
impl StructuralPartialEq for DeclaredAspect
Auto Trait Implementations§
impl Freeze for DeclaredAspect
impl RefUnwindSafe for DeclaredAspect
impl Send for DeclaredAspect
impl Sync for DeclaredAspect
impl Unpin for DeclaredAspect
impl UnsafeUnpin for DeclaredAspect
impl UnwindSafe for DeclaredAspect
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