pub trait AsTimerId {
// Required method
fn as_timer_id(&self) -> TimerId;
}Expand description
A trait which provides a standart interface to aquire the TimerId which is a unification of the timer instance identification.
§Implementations
A sub-trait of FdTimerRead.
Required Methods§
Sourcefn as_timer_id(&self) -> TimerId
fn as_timer_id(&self) -> TimerId
Returns the uniq timer ID number.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".