pub struct TripVia {
pub via_place: Box<PlaceRef>,
pub dwell_time: Option<Option<String>>,
pub data_filter: Option<Box<TripDataFilter>>,
}Expand description
TripVia : Via restrictions for a trip. Provided by OJP. A TripDataFilter given applies to the section after this via.
Fields§
§via_place: Box<PlaceRef>§dwell_time: Option<Option<String>>desired dwell time at the via place
data_filter: Option<Box<TripDataFilter>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TripVia
impl<'de> Deserialize<'de> for TripVia
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 TripVia
Auto Trait Implementations§
impl Freeze for TripVia
impl RefUnwindSafe for TripVia
impl Send for TripVia
impl Sync for TripVia
impl Unpin for TripVia
impl UnwindSafe for TripVia
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