pub struct ThreadEntry {
pub process_id: u32,
pub thread_id: u32,
pub base_priority: i32,
}Expand description
Represents single running thread in a process.
Fields§
§process_id: u32Id of the process this thread is running in.
thread_id: u32Id of the thread.
base_priority: i32Priority of the thread.
Trait Implementations§
Source§impl Clone for ThreadEntry
impl Clone for ThreadEntry
Source§fn clone(&self) -> ThreadEntry
fn clone(&self) -> ThreadEntry
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 ThreadEntry
impl Debug for ThreadEntry
Source§impl From<THREADENTRY32> for ThreadEntry
impl From<THREADENTRY32> for ThreadEntry
Source§fn from(te: THREADENTRY32) -> Self
fn from(te: THREADENTRY32) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ThreadEntry
impl RefUnwindSafe for ThreadEntry
impl Send for ThreadEntry
impl Sync for ThreadEntry
impl Unpin for ThreadEntry
impl UnwindSafe for ThreadEntry
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