pub trait Notifier: Send + Clone {
// Required method
fn notify(&self) -> bool;
}Expand description
This method should be able to call from task or ISR. The implementation should handle the different situations.
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.