pub trait TimerTrait: TimerTraitConst {
    fn as_raw_mut_Timer(&mut self) -> *mut c_void;

    fn start(&mut self) -> Result<()> { ... }
    fn stop(&mut self) -> Result<()> { ... }
}
Expand description

Mutable methods for core::Timer

Required Methods§

Provided Methods§

Implementors§