#[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 · 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 ProcessAccess
impl Debug for ProcessAccess
Source§impl PartialEq for ProcessAccess
impl PartialEq for ProcessAccess
impl Copy for ProcessAccess
impl Eq for ProcessAccess
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 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