pub struct ThreadEntry {
pub thread_id: u32,
pub owner_process_id: u32,
pub base_priority: i32,
}Expand description
thread entry from enumeration
Fields§
§thread_id: u32§owner_process_id: u32§base_priority: i32Trait 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 moreAuto 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