#[repr(u32)]pub enum ProcessAccess {
Terminate = 1,
CreateThread = 2,
VmOperation = 8,
VmRead = 16,
VmWrite = 32,
DupHandle = 64,
QueryInformation = 1_024,
SetInformation = 512,
All = 2_035_711,
}Expand description
process access flags for opening
Variants§
Terminate = 1
CreateThread = 2
VmOperation = 8
VmRead = 16
VmWrite = 32
DupHandle = 64
QueryInformation = 1_024
SetInformation = 512
All = 2_035_711
Trait Implementations§
Source§impl Clone for ProcessAccess
impl Clone for ProcessAccess
Source§fn clone(&self) -> ProcessAccess
fn clone(&self) -> ProcessAccess
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 ProcessAccess
Source§impl Debug for ProcessAccess
impl Debug for ProcessAccess
impl Eq for ProcessAccess
Source§impl PartialEq for ProcessAccess
impl PartialEq for ProcessAccess
Source§fn eq(&self, other: &ProcessAccess) -> bool
fn eq(&self, other: &ProcessAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessAccess
Auto Trait Implementations§
impl Freeze for ProcessAccess
impl RefUnwindSafe for ProcessAccess
impl Send for ProcessAccess
impl Sync for ProcessAccess
impl Unpin for ProcessAccess
impl UnsafeUnpin for ProcessAccess
impl UnwindSafe for ProcessAccess
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