#[repr(C)]pub struct _JOBOBJECT_BASIC_PROCESS_ID_LIST {
pub NumberOfAssignedProcesses: DWORD,
pub NumberOfProcessIdsInList: DWORD,
pub ProcessIdList: [ULONG_PTR; 1],
}
Fields§
§NumberOfAssignedProcesses: DWORD
§NumberOfProcessIdsInList: DWORD
§ProcessIdList: [ULONG_PTR; 1]
Trait Implementations§
Source§impl Clone for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Clone for _JOBOBJECT_BASIC_PROCESS_ID_LIST
Source§fn clone(&self) -> _JOBOBJECT_BASIC_PROCESS_ID_LIST
fn clone(&self) -> _JOBOBJECT_BASIC_PROCESS_ID_LIST
Returns a copy 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 Ord for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Ord for _JOBOBJECT_BASIC_PROCESS_ID_LIST
Source§fn cmp(&self, other: &_JOBOBJECT_BASIC_PROCESS_ID_LIST) -> Ordering
fn cmp(&self, other: &_JOBOBJECT_BASIC_PROCESS_ID_LIST) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl PartialEq for _JOBOBJECT_BASIC_PROCESS_ID_LIST
Source§fn eq(&self, other: &_JOBOBJECT_BASIC_PROCESS_ID_LIST) -> bool
fn eq(&self, other: &_JOBOBJECT_BASIC_PROCESS_ID_LIST) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl PartialOrd for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Copy for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Eq for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl StructuralPartialEq for _JOBOBJECT_BASIC_PROCESS_ID_LIST
Auto Trait Implementations§
impl Freeze for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl RefUnwindSafe for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Send for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Sync for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl Unpin for _JOBOBJECT_BASIC_PROCESS_ID_LIST
impl UnwindSafe for _JOBOBJECT_BASIC_PROCESS_ID_LIST
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