pub enum PaceAction {
Continue,
Sleep,
Stop,
}Variants§
Trait Implementations§
Source§impl Clone for PaceAction
impl Clone for PaceAction
Source§fn clone(&self) -> PaceAction
fn clone(&self) -> PaceAction
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 PaceAction
Source§impl Debug for PaceAction
impl Debug for PaceAction
Source§impl<'de> Deserialize<'de> for PaceAction
impl<'de> Deserialize<'de> for PaceAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PaceAction
Source§impl PartialEq for PaceAction
impl PartialEq for PaceAction
Source§impl Serialize for PaceAction
impl Serialize for PaceAction
impl StructuralPartialEq for PaceAction
Auto Trait Implementations§
impl Freeze for PaceAction
impl RefUnwindSafe for PaceAction
impl Send for PaceAction
impl Sync for PaceAction
impl Unpin for PaceAction
impl UnsafeUnpin for PaceAction
impl UnwindSafe for PaceAction
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