Struct lta_models::traffic::bike_parking::BikeParking
source · pub struct BikeParking {
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: bool
Trait Implementations§
source§impl Clone for BikeParking
impl Clone for BikeParking
source§fn clone(&self) -> BikeParking
fn clone(&self) -> BikeParking
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 BikeParking
impl Debug for BikeParking
source§impl<'de> Deserialize<'de> for BikeParking
impl<'de> Deserialize<'de> for BikeParking
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 BikeParking
impl PartialEq for BikeParking
source§fn eq(&self, other: &BikeParking) -> bool
fn eq(&self, other: &BikeParking) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BikeParking
impl Serialize for BikeParking
impl StructuralPartialEq for BikeParking
Auto Trait Implementations§
impl RefUnwindSafe for BikeParking
impl Send for BikeParking
impl Sync for BikeParking
impl Unpin for BikeParking
impl UnwindSafe for BikeParking
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