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, } } }