#[repr(isize)]pub enum ActivityType {
Other = 1,
AutomotiveNavigation = 2,
Fitnes = 3,
OtherNavigation = 4,
Airborne = 5,
}Variants§
Other = 1
positioning in activities that are not covered by one of the other activity types. Includes activities without a specific user intention; for example, positioning while the user sits on a bench interacting with the device
positioning in an automobile following a road network
Fitnes = 3
positioning in dedicated fitness sessions, e.g. walking workouts, running workouts, cycling workouts, etc.
positioning for transportation that does not or may not adhere to roads such as cycling, scooters, trains, boats and off-road vehicles; also for positioning indoors and outdoors that isn’t tied to a dedicated fitness session, e.g. walking
Airborne = 5
positioning for activities in the air, e.g. flying in an airplane or helicopter, paragliding, flying on a drone, skydiving, etc. Also includes runway taxiing
Trait Implementations§
Source§impl Clone for ActivityType
impl Clone for ActivityType
Source§fn clone(&self) -> ActivityType
fn clone(&self) -> ActivityType
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for ActivityType
Source§impl Debug for ActivityType
impl Debug for ActivityType
impl Eq for ActivityType
Source§impl PartialEq for ActivityType
impl PartialEq for ActivityType
Source§fn eq(&self, other: &ActivityType) -> bool
fn eq(&self, other: &ActivityType) -> bool
self and other values to be equal, and is used by ==.