pub trait TimersStorage<FT, T>: Default where
    FT: AllVariants
{ fn get_timer_storage_mut(&mut self, id: &FT) -> &mut Option<T>; }
Expand description

Associate some data with a specific timer ID.

Required methods

Implementors