pub enum RouteActivityType {
Hiking,
Cycling,
Running,
Walking,
Driving,
Skiing,
Other,
}Variants§
Trait Implementations§
Source§impl Clone for RouteActivityType
impl Clone for RouteActivityType
Source§fn clone(&self) -> RouteActivityType
fn clone(&self) -> RouteActivityType
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 moreSource§impl Debug for RouteActivityType
impl Debug for RouteActivityType
Source§impl Default for RouteActivityType
impl Default for RouteActivityType
Source§fn default() -> RouteActivityType
fn default() -> RouteActivityType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RouteActivityType
impl<'de> Deserialize<'de> for RouteActivityType
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
Source§impl PartialEq for RouteActivityType
impl PartialEq for RouteActivityType
Source§fn eq(&self, other: &RouteActivityType) -> bool
fn eq(&self, other: &RouteActivityType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RouteActivityType
impl Serialize for RouteActivityType
impl StructuralPartialEq for RouteActivityType
Auto Trait Implementations§
impl Freeze for RouteActivityType
impl RefUnwindSafe for RouteActivityType
impl Send for RouteActivityType
impl Sync for RouteActivityType
impl Unpin for RouteActivityType
impl UnsafeUnpin for RouteActivityType
impl UnwindSafe for RouteActivityType
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