pub enum TransitType {
PkTransitTypeAir,
PkTransitTypeBoat,
PkTransitTypeBus,
PkTransitTypeGeneric,
PkTransitTypeTrain,
}Expand description
Type of transit.
Variants§
PkTransitTypeAir
Transit type PKTransitTypeAir
PkTransitTypeBoat
Transit type PKTransitTypeBoat
PkTransitTypeBus
Transit type PKTransitTypeBus
PkTransitTypeGeneric
Transit type PKTransitTypeGeneric
PkTransitTypeTrain
Transit type PKTransitTypeTrain
Trait Implementations§
Source§impl Clone for TransitType
impl Clone for TransitType
Source§fn clone(&self) -> TransitType
fn clone(&self) -> TransitType
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 TransitType
impl Debug for TransitType
Source§impl<'de> Deserialize<'de> for TransitType
impl<'de> Deserialize<'de> for TransitType
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 TransitType
impl RefUnwindSafe for TransitType
impl Send for TransitType
impl Sync for TransitType
impl Unpin for TransitType
impl UnsafeUnpin for TransitType
impl UnwindSafe for TransitType
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