pub struct TicketingIdentifier {
pub ticketing_stop_id: String,
pub stop_id: String,
pub agency_id: String,
}Expand description
This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension A mapping of the GTFS-identifiers to the ticket shop identifiers
Fields§
§ticketing_stop_id: StringStop ID used by the ticket shop
stop_id: StringGTFS-side stop id
agency_id: StringGTFS-side agency id
Trait Implementations§
Source§impl Clone for TicketingIdentifier
impl Clone for TicketingIdentifier
Source§fn clone(&self) -> TicketingIdentifier
fn clone(&self) -> TicketingIdentifier
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 TicketingIdentifier
impl Debug for TicketingIdentifier
Source§impl Default for TicketingIdentifier
impl Default for TicketingIdentifier
Source§fn default() -> TicketingIdentifier
fn default() -> TicketingIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TicketingIdentifier
impl<'de> Deserialize<'de> for TicketingIdentifier
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 TicketingIdentifier
impl RefUnwindSafe for TicketingIdentifier
impl Send for TicketingIdentifier
impl Sync for TicketingIdentifier
impl Unpin for TicketingIdentifier
impl UnsafeUnpin for TicketingIdentifier
impl UnwindSafe for TicketingIdentifier
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