#[repr(C)]pub struct ThreadEntry32 {
pub size: DWORD,
pub cnt_usage: DWORD,
pub thread_id: DWORD,
pub owner_process_id: DWORD,
pub tp_base_pri: LONG,
pub tp_delta_pri: LONG,
pub flags: DWORD,
}Fields§
§size: DWORD§cnt_usage: DWORD§thread_id: DWORD§owner_process_id: DWORD§tp_base_pri: LONG§tp_delta_pri: LONG§flags: DWORDImplementations§
Source§impl ThreadEntry32
impl ThreadEntry32
pub fn as_ptr(&self) -> *const Self
pub fn as_mut_ptr(&mut self) -> *mut Self
pub fn as_c_ptr(&self) -> *const THREADENTRY32
pub fn as_mut_c_ptr(&mut self) -> *mut THREADENTRY32
Trait Implementations§
Source§impl Clone for ThreadEntry32
impl Clone for ThreadEntry32
Source§fn clone(&self) -> ThreadEntry32
fn clone(&self) -> ThreadEntry32
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 ThreadEntry32
impl Debug for ThreadEntry32
Source§impl Default for ThreadEntry32
impl Default for ThreadEntry32
Source§fn default() -> ThreadEntry32
fn default() -> ThreadEntry32
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ThreadEntry32
impl RefUnwindSafe for ThreadEntry32
impl Send for ThreadEntry32
impl Sync for ThreadEntry32
impl Unpin for ThreadEntry32
impl UnsafeUnpin for ThreadEntry32
impl UnwindSafe for ThreadEntry32
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