pub struct Route {
pub route_summary: Option<Option<String>>,
pub route_item: Option<Box<RouteItem>>,
pub route_item_list: Option<Vec<RouteItem>>,
}Expand description
Route : Route description including the first and last real stopPoint
Fields§
§route_summary: Option<Option<String>>Printable representation of the allowed routing ("Wegetext")
route_item: Option<Box<RouteItem>>§route_item_list: Option<Vec<RouteItem>>list of route items referenced within the list
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Route
impl<'de> Deserialize<'de> for Route
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Route
Auto Trait Implementations§
impl Freeze for Route
impl RefUnwindSafe for Route
impl Send for Route
impl Sync for Route
impl Unpin for Route
impl UnwindSafe for Route
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