pub struct StopCallStatus {
pub order: Option<Option<i32>>,
pub request_stop: Option<Option<bool>>,
pub unplanned_stop: Option<Option<bool>>,
pub not_serviced_stop: Option<Option<bool>>,
pub no_boarding_at_stop: Option<Option<bool>>,
pub no_alighting_at_stop: Option<Option<bool>>,
pub is_border_point: Option<Option<bool>>,
}Expand description
StopCallStatus : Status properties for the vehicle call at this stop. Provided by OJP.
Fields§
§order: Option<Option<i32>>Sequence number of this stop in the service pattern of the journey.
request_stop: Option<Option<bool>>The vehicle journey calls at this stop only on demand.
unplanned_stop: Option<Option<bool>>This stop has not been planned by the planning department.
not_serviced_stop: Option<Option<bool>>The vehicle will not call at this stop despite earlier planning.
no_boarding_at_stop: Option<Option<bool>>Boarding will not be allowed at this stop of this journey.
no_alighting_at_stop: Option<Option<bool>>Alighting will not be allowed at this stop of this journey.
is_border_point: Option<Option<bool>>Indicates whether the stop is recognized by the system as a border point between two or more countries.
Implementations§
Source§impl StopCallStatus
impl StopCallStatus
Sourcepub fn new() -> StopCallStatus
pub fn new() -> StopCallStatus
Status properties for the vehicle call at this stop. Provided by OJP.
Trait Implementations§
Source§impl Clone for StopCallStatus
impl Clone for StopCallStatus
Source§fn clone(&self) -> StopCallStatus
fn clone(&self) -> StopCallStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 StopCallStatus
impl Debug for StopCallStatus
Source§impl Default for StopCallStatus
impl Default for StopCallStatus
Source§fn default() -> StopCallStatus
fn default() -> StopCallStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StopCallStatus
impl<'de> Deserialize<'de> for StopCallStatus
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
Source§impl PartialEq for StopCallStatus
impl PartialEq for StopCallStatus
Source§impl Serialize for StopCallStatus
impl Serialize for StopCallStatus
impl StructuralPartialEq for StopCallStatus
Auto Trait Implementations§
impl Freeze for StopCallStatus
impl RefUnwindSafe for StopCallStatus
impl Send for StopCallStatus
impl Sync for StopCallStatus
impl Unpin for StopCallStatus
impl UnwindSafe for StopCallStatus
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