struct CpuState {
segment_start_ns: u64,
last_seen_ns: u64,
running_task: Option<RunningTask>,
system_stack: Vec<ActiveSystem>,
active_execution: Option<ActiveExecution>,
}Fields§
§segment_start_ns: u64§last_seen_ns: u64§running_task: Option<RunningTask>§system_stack: Vec<ActiveSystem>§active_execution: Option<ActiveExecution>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CpuState
impl RefUnwindSafe for CpuState
impl Send for CpuState
impl Sync for CpuState
impl Unpin for CpuState
impl UnsafeUnpin for CpuState
impl UnwindSafe for CpuState
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