pub struct TicketingDeepLink {
pub ticketing_deep_link_id: String,
pub web_url: Option<String>,
pub android_intent_url: Option<String>,
pub ios_universal_link_url: Option<String>,
}Expand description
This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension The base url to a ticket shop without the trip specific parameters
Fields§
§ticketing_deep_link_id: StringUnique identifier for this base link
web_url: Option<String>URL to be used for buying a ticket on the web
android_intent_url: Option<String>URI to be used for buying a ticket in an android app
ios_universal_link_url: Option<String>URL used to use on iOS
Trait Implementations§
Source§impl Clone for TicketingDeepLink
impl Clone for TicketingDeepLink
Source§fn clone(&self) -> TicketingDeepLink
fn clone(&self) -> TicketingDeepLink
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 TicketingDeepLink
impl Debug for TicketingDeepLink
Source§impl Default for TicketingDeepLink
impl Default for TicketingDeepLink
Source§fn default() -> TicketingDeepLink
fn default() -> TicketingDeepLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TicketingDeepLink
impl<'de> Deserialize<'de> for TicketingDeepLink
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 TicketingDeepLink
impl RefUnwindSafe for TicketingDeepLink
impl Send for TicketingDeepLink
impl Sync for TicketingDeepLink
impl Unpin for TicketingDeepLink
impl UnsafeUnpin for TicketingDeepLink
impl UnwindSafe for TicketingDeepLink
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