From 31b1ba0092ed99a36b3c0215dc35d4dcb545eddb Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Sun, 21 May 2023 22:06:39 +0200 Subject: [PATCH] cargo fmt --- src/locations/waypoint.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locations/waypoint.rs b/src/locations/waypoint.rs index e74526b..05bc5af 100644 --- a/src/locations/waypoint.rs +++ b/src/locations/waypoint.rs @@ -48,7 +48,7 @@ pub struct Waypoint { /// reporting point this waypoint was created from pub r09_reporting_point: Option, /// destination number of the r09 telegram - pub r09_destination_number: Option + pub r09_destination_number: Option, } impl From for Waypoint { @@ -64,7 +64,7 @@ impl From for Waypoint { run: waypoint.run, delayed: waypoint.delayed, r09_reporting_point: waypoint.r09_reporting_point, - r09_destination_number: waypoint.r09_destination_number + r09_destination_number: waypoint.r09_destination_number, } } }