pub enum TimerAction {
Start {
ticks: u32,
},
Stop,
}Expand description
Timer action from the receiver state machine.
Variants§
Trait Implementations§
Source§impl Clone for TimerAction
impl Clone for TimerAction
Source§fn clone(&self) -> TimerAction
fn clone(&self) -> TimerAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimerAction
impl Debug for TimerAction
Source§impl PartialEq for TimerAction
impl PartialEq for TimerAction
impl Copy for TimerAction
impl Eq for TimerAction
impl StructuralPartialEq for TimerAction
Auto Trait Implementations§
impl Freeze for TimerAction
impl RefUnwindSafe for TimerAction
impl Send for TimerAction
impl Sync for TimerAction
impl Unpin for TimerAction
impl UnsafeUnpin for TimerAction
impl UnwindSafe for TimerAction
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