pub trait RtosTraceOSCallbacks {
// Required methods
fn task_list();
fn time() -> u64;
}
Expand description
Callbacks to the OS invoked by the tracing system. This trait can be implemented in the RTOS.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.