enum ClassifiedEvent {
SchedSwitch {
next_comm: String,
next_hint: u64,
next_tid: i32,
next_is_idle: bool,
},
HardIrqEntry,
HardIrqExit,
SoftIrqEntry(ActiveSystem),
SoftIrqExit,
Nmi {
delta_ns: u64,
},
Other,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClassifiedEvent
impl RefUnwindSafe for ClassifiedEvent
impl Send for ClassifiedEvent
impl Sync for ClassifiedEvent
impl Unpin for ClassifiedEvent
impl UnsafeUnpin for ClassifiedEvent
impl UnwindSafe for ClassifiedEvent
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