pub struct PlaceAvailabilityMapResponse {
pub problems: Option<Vec<Problem>>,
pub vehicle: Option<Box<VehicleAvailability>>,
}Fields§
§problems: Option<Vec<Problem>>§vehicle: Option<Box<VehicleAvailability>>Implementations§
Source§impl PlaceAvailabilityMapResponse
impl PlaceAvailabilityMapResponse
pub fn new() -> PlaceAvailabilityMapResponse
Trait Implementations§
Source§impl Clone for PlaceAvailabilityMapResponse
impl Clone for PlaceAvailabilityMapResponse
Source§fn clone(&self) -> PlaceAvailabilityMapResponse
fn clone(&self) -> PlaceAvailabilityMapResponse
Returns a duplicate 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 PlaceAvailabilityMapResponse
impl Debug for PlaceAvailabilityMapResponse
Source§impl Default for PlaceAvailabilityMapResponse
impl Default for PlaceAvailabilityMapResponse
Source§fn default() -> PlaceAvailabilityMapResponse
fn default() -> PlaceAvailabilityMapResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlaceAvailabilityMapResponse
impl<'de> Deserialize<'de> for PlaceAvailabilityMapResponse
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 PlaceAvailabilityMapResponse
impl PartialEq for PlaceAvailabilityMapResponse
Source§fn eq(&self, other: &PlaceAvailabilityMapResponse) -> bool
fn eq(&self, other: &PlaceAvailabilityMapResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaceAvailabilityMapResponse
Auto Trait Implementations§
impl Freeze for PlaceAvailabilityMapResponse
impl RefUnwindSafe for PlaceAvailabilityMapResponse
impl Send for PlaceAvailabilityMapResponse
impl Sync for PlaceAvailabilityMapResponse
impl Unpin for PlaceAvailabilityMapResponse
impl UnwindSafe for PlaceAvailabilityMapResponse
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