pub trait RtosTraceApplicationCallbacks {
// Required methods
fn system_description();
fn sysclock() -> u32;
}
Expand description
Callbacks to the application invoked by the tracing system. This trait can be implemented by user.
Required Methods§
Sourcefn system_description()
fn system_description()
Send a system and application description to the tracing system.
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.