Struct lta_models::traffic::bike_parking::BikeParkingRaw   
source · pub struct BikeParkingRaw {
    pub desc: String,
    pub lat: f64,
    pub long: f64,
    pub rack_type: RackType,
    pub rack_count: u32,
    pub shelter_indicator: bool,
}Fields§
§desc: String§lat: f64§long: f64§rack_type: RackType§rack_count: u32§shelter_indicator: boolTrait Implementations§
source§impl Clone for BikeParkingRaw
 
impl Clone for BikeParkingRaw
source§fn clone(&self) -> BikeParkingRaw
 
fn clone(&self) -> BikeParkingRaw
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 BikeParkingRaw
 
impl Debug for BikeParkingRaw
source§impl<'de> Deserialize<'de> for BikeParkingRaw
 
impl<'de> Deserialize<'de> for BikeParkingRaw
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<BikeParkingRaw> for BikeParking
 
impl From<BikeParkingRaw> for BikeParking
source§fn from(r: BikeParkingRaw) -> Self
 
fn from(r: BikeParkingRaw) -> Self
Converts to this type from the input type.
source§impl PartialEq for BikeParkingRaw
 
impl PartialEq for BikeParkingRaw
source§fn eq(&self, other: &BikeParkingRaw) -> bool
 
fn eq(&self, other: &BikeParkingRaw) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for BikeParkingRaw
 
impl Serialize for BikeParkingRaw
impl StructuralPartialEq for BikeParkingRaw
Auto Trait Implementations§
impl RefUnwindSafe for BikeParkingRaw
impl Send for BikeParkingRaw
impl Sync for BikeParkingRaw
impl Unpin for BikeParkingRaw
impl UnwindSafe for BikeParkingRaw
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