pub struct ThreadDumpEntry {
pub koid: u64,
pub name: String,
pub scheduler_role: String,
}Expand description
Structured diagnostic dump entry for a thread spawned by the driver runtime.
Fields§
§koid: u64Kernel object ID (KOID) of the thread.
name: StringName of the thread.
scheduler_role: StringScheduler role of the thread pool that spawned this thread.
Trait Implementations§
Source§impl Clone for ThreadDumpEntry
impl Clone for ThreadDumpEntry
Source§fn clone(&self) -> ThreadDumpEntry
fn clone(&self) -> ThreadDumpEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ThreadDumpEntry
impl Debug for ThreadDumpEntry
impl Eq for ThreadDumpEntry
Source§impl PartialEq for ThreadDumpEntry
impl PartialEq for ThreadDumpEntry
impl StructuralPartialEq for ThreadDumpEntry
Auto Trait Implementations§
impl Freeze for ThreadDumpEntry
impl RefUnwindSafe for ThreadDumpEntry
impl Send for ThreadDumpEntry
impl Sync for ThreadDumpEntry
impl Unpin for ThreadDumpEntry
impl UnsafeUnpin for ThreadDumpEntry
impl UnwindSafe for ThreadDumpEntry
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