Struct ntapi::ntpsapi::JOBOBJECT_FREEZE_INFORMATION
source · [−]#[repr(C)]pub struct JOBOBJECT_FREEZE_INFORMATION {
pub Flags: ULONG,
pub Freeze: BOOLEAN,
pub Swap: BOOLEAN,
pub Reserved0: [UCHAR; 2],
pub WakeFilter: JOBOBJECT_WAKE_FILTER,
}
Fields
Flags: ULONG
Freeze: BOOLEAN
Swap: BOOLEAN
Reserved0: [UCHAR; 2]
WakeFilter: JOBOBJECT_WAKE_FILTER
Implementations
sourceimpl JOBOBJECT_FREEZE_INFORMATION
impl JOBOBJECT_FREEZE_INFORMATION
pub const fn FreezeOperation(&self) -> ULONG
pub fn set_FreezeOperation(&mut self, val: ULONG)
pub const fn FilterOperation(&self) -> ULONG
pub fn set_FilterOperation(&mut self, val: ULONG)
pub const fn SwapOperation(&self) -> ULONG
pub fn set_SwapOperation(&mut self, val: ULONG)
pub const fn Reserved(&self) -> ULONG
pub fn set_Reserved(&mut self, val: ULONG)
Trait Implementations
sourceimpl Clone for JOBOBJECT_FREEZE_INFORMATION
impl Clone for JOBOBJECT_FREEZE_INFORMATION
sourcefn clone(&self) -> JOBOBJECT_FREEZE_INFORMATION
fn clone(&self) -> JOBOBJECT_FREEZE_INFORMATION
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for JOBOBJECT_FREEZE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for JOBOBJECT_FREEZE_INFORMATION
impl Send for JOBOBJECT_FREEZE_INFORMATION
impl Sync for JOBOBJECT_FREEZE_INFORMATION
impl Unpin for JOBOBJECT_FREEZE_INFORMATION
impl UnwindSafe for JOBOBJECT_FREEZE_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more