pub enum TimerEvent {
Finish,
Start,
Pause,
Stop,
}Variants§
Trait Implementations§
Source§impl Clone for TimerEvent
impl Clone for TimerEvent
Source§fn clone(&self) -> TimerEvent
fn clone(&self) -> TimerEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TimerEvent
impl Eq for TimerEvent
Source§impl Hash for TimerEvent
impl Hash for TimerEvent
Source§impl PartialEq for TimerEvent
impl PartialEq for TimerEvent
Source§fn eq(&self, other: &TimerEvent) -> bool
fn eq(&self, other: &TimerEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimerEvent
Auto Trait Implementations§
impl Freeze for TimerEvent
impl RefUnwindSafe for TimerEvent
impl Send for TimerEvent
impl Sync for TimerEvent
impl Unpin for TimerEvent
impl UnsafeUnpin for TimerEvent
impl UnwindSafe for TimerEvent
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