Enum lta_models::taxi::taxi_stands::TaxiStandType
source · pub enum TaxiStandType {
Stand,
Stop,
Unknown,
}
Variants§
Stand
Allow taxis to queue in the taxi bays and wait for passengers
Stop
Allow taxis to perform immediate pick up and drop off of passengers
Unknown
Trait Implementations§
source§impl Clone for TaxiStandType
impl Clone for TaxiStandType
source§fn clone(&self) -> TaxiStandType
fn clone(&self) -> TaxiStandType
Returns a copy 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 TaxiStandType
impl Debug for TaxiStandType
source§impl Default for TaxiStandType
impl Default for TaxiStandType
source§fn default() -> TaxiStandType
fn default() -> TaxiStandType
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaxiStandType
impl<'de> Deserialize<'de> for TaxiStandType
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 TaxiStandType
impl PartialEq for TaxiStandType
source§fn eq(&self, other: &TaxiStandType) -> bool
fn eq(&self, other: &TaxiStandType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TaxiStandType
impl Serialize for TaxiStandType
impl StructuralPartialEq for TaxiStandType
Auto Trait Implementations§
impl RefUnwindSafe for TaxiStandType
impl Send for TaxiStandType
impl Sync for TaxiStandType
impl Unpin for TaxiStandType
impl UnwindSafe for TaxiStandType
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