diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-10 13:27:51 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-10 13:27:51 +0200 |
commit | a1ef3b1e7ef495864f98ed45ef398441be26e6da (patch) | |
tree | 51760054207f518492a406ba33d3fdf8fac58ddb /src/graphql | |
parent | 07dc779a4a21bb6f90f048712becd89f0f1eff85 (diff) |
Remove `OnFoot` moving activity
Diffstat (limited to 'src/graphql')
-rw-r--r-- | src/graphql/types/position.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/graphql/types/position.rs b/src/graphql/types/position.rs index a06af6c..22030c5 100644 --- a/src/graphql/types/position.rs +++ b/src/graphql/types/position.rs @@ -12,9 +12,6 @@ pub enum MovingActivity { // "Car" of the doc InVehicle, - // Walking or running - OnFoot, - // Running Running, @@ -29,7 +26,6 @@ impl<'a> FromSql<'a> for MovingActivity { fn from_sql(_ty: &Type, raw: &'a [u8]) -> Result<MovingActivity, Box<dyn Error + Sync + Send>> { match std::str::from_utf8(raw)? { "InVehicle" => Ok(MovingActivity::InVehicle), - "OnFoot" => Ok(MovingActivity::OnFoot), "Running" => Ok(MovingActivity::Running), "Walking" => Ok(MovingActivity::Walking), "Still" => Ok(MovingActivity::Still), @@ -50,7 +46,6 @@ impl ToSql for MovingActivity { ) -> Result<IsNull, Box<dyn Error + Sync + Send>> { let value = match *self { MovingActivity::InVehicle => "InVehicle", - MovingActivity::OnFoot => "OnFoot", MovingActivity::Running => "Running", MovingActivity::Walking => "Walking", MovingActivity::Still => "Still", |