pub struct StopTimeUpdate {
pub stop_sequence: Option<u32>,
pub stop_id: Option<String>,
pub arrival: Option<StopTimeEvent>,
pub departure: Option<StopTimeEvent>,
pub schedule_relationship: ScheduleRelationship,
}
Fields§
§stop_sequence: Option<u32>
§stop_id: Option<String>
§arrival: Option<StopTimeEvent>
§departure: Option<StopTimeEvent>
§schedule_relationship: ScheduleRelationship
Trait Implementations§
Source§impl Clone for StopTimeUpdate
impl Clone for StopTimeUpdate
Source§fn clone(&self) -> StopTimeUpdate
fn clone(&self) -> StopTimeUpdate
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 StopTimeUpdate
impl Debug for StopTimeUpdate
Source§impl<'de> Deserialize<'de> for StopTimeUpdate
impl<'de> Deserialize<'de> for StopTimeUpdate
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
Auto Trait Implementations§
impl Freeze for StopTimeUpdate
impl RefUnwindSafe for StopTimeUpdate
impl Send for StopTimeUpdate
impl Sync for StopTimeUpdate
impl Unpin for StopTimeUpdate
impl UnwindSafe for StopTimeUpdate
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