Trait Events

Source
pub trait Events {
    // Required method
    fn on_alarm(&self) -> Event;
}
Available on crate feature unstable only.
Expand description

General purpose timer ETM events.

Required Methods§

Source

fn on_alarm(&self) -> Event

ETM event triggered on alarm

Implementors§

Source§

impl Events for Timer<'_>