pub enum TimerKind {
OneShot,
Periodic,
}Expand description
Timer-Kind.
Variants§
OneShot
One-Shot: feuert genau einmal.
Periodic
Periodic: feuert wiederholt mit dem Periode-Intervall.
Trait Implementations§
impl Copy for TimerKind
impl Eq for TimerKind
impl StructuralPartialEq for TimerKind
Auto Trait Implementations§
impl Freeze for TimerKind
impl RefUnwindSafe for TimerKind
impl Send for TimerKind
impl Sync for TimerKind
impl Unpin for TimerKind
impl UnsafeUnpin for TimerKind
impl UnwindSafe for TimerKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more