Struct lta_models::taxi::taxi_stands::TaxiStandRaw
source · pub struct TaxiStandRaw {
pub taxi_code: String,
pub lat: f64,
pub long: f64,
pub is_barrier_free: bool,
pub owner: TaxiStandOwner,
pub stand_type: TaxiStandType,
pub name: String,
}
Fields§
§taxi_code: String
§lat: f64
Original data already float
long: f64
Original data already float
is_barrier_free: bool
§owner: TaxiStandOwner
§stand_type: TaxiStandType
§name: String
Trait Implementations§
source§impl Clone for TaxiStandRaw
impl Clone for TaxiStandRaw
source§fn clone(&self) -> TaxiStandRaw
fn clone(&self) -> TaxiStandRaw
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 TaxiStandRaw
impl Debug for TaxiStandRaw
source§impl<'de> Deserialize<'de> for TaxiStandRaw
impl<'de> Deserialize<'de> for TaxiStandRaw
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 From<TaxiStandRaw> for TaxiStand
impl From<TaxiStandRaw> for TaxiStand
source§fn from(r: TaxiStandRaw) -> Self
fn from(r: TaxiStandRaw) -> Self
Converts to this type from the input type.
source§impl PartialEq for TaxiStandRaw
impl PartialEq for TaxiStandRaw
source§fn eq(&self, other: &TaxiStandRaw) -> bool
fn eq(&self, other: &TaxiStandRaw) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TaxiStandRaw
impl Serialize for TaxiStandRaw
impl StructuralPartialEq for TaxiStandRaw
Auto Trait Implementations§
impl RefUnwindSafe for TaxiStandRaw
impl Send for TaxiStandRaw
impl Sync for TaxiStandRaw
impl Unpin for TaxiStandRaw
impl UnwindSafe for TaxiStandRaw
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