#[non_exhaustive]pub struct ExpandedRoute {
pub points: Vec<RoutePoint>,
pub procedures: Vec<RouteToken>,
}Expand description
An expanded route: geometry plus the procedures awaiting a future procedure engine.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.points: Vec<RoutePoint>Ordered route geometry.
procedures: Vec<RouteToken>SID/STAR tokens recognized but not expanded (no geometry).
Trait Implementations§
Source§impl Clone for ExpandedRoute
impl Clone for ExpandedRoute
Source§fn clone(&self) -> ExpandedRoute
fn clone(&self) -> ExpandedRoute
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 ExpandedRoute
impl Debug for ExpandedRoute
Source§impl Default for ExpandedRoute
impl Default for ExpandedRoute
Source§fn default() -> ExpandedRoute
fn default() -> ExpandedRoute
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExpandedRoute
impl PartialEq for ExpandedRoute
Source§fn eq(&self, other: &ExpandedRoute) -> bool
fn eq(&self, other: &ExpandedRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpandedRoute
Auto Trait Implementations§
impl Freeze for ExpandedRoute
impl RefUnwindSafe for ExpandedRoute
impl Send for ExpandedRoute
impl Sync for ExpandedRoute
impl Unpin for ExpandedRoute
impl UnsafeUnpin for ExpandedRoute
impl UnwindSafe for ExpandedRoute
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