pub enum TimerFinishReason {
Completed,
Stopped,
Cancelled,
Replaced,
}Expand description
Indicates how a timer run ended.
Variants§
Trait Implementations§
Source§impl Clone for TimerFinishReason
impl Clone for TimerFinishReason
Source§fn clone(&self) -> TimerFinishReason
fn clone(&self) -> TimerFinishReason
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 TimerFinishReason
Source§impl Debug for TimerFinishReason
impl Debug for TimerFinishReason
impl Eq for TimerFinishReason
Source§impl PartialEq for TimerFinishReason
impl PartialEq for TimerFinishReason
Source§fn eq(&self, other: &TimerFinishReason) -> bool
fn eq(&self, other: &TimerFinishReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimerFinishReason
Auto Trait Implementations§
impl Freeze for TimerFinishReason
impl RefUnwindSafe for TimerFinishReason
impl Send for TimerFinishReason
impl Sync for TimerFinishReason
impl Unpin for TimerFinishReason
impl UnsafeUnpin for TimerFinishReason
impl UnwindSafe for TimerFinishReason
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