pub struct PlaceAvailabilityCollectionResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub available_places: Option<Vec<AvailablePlace>>,
pub _links: Option<Vec<Link>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§available_places: Option<Vec<AvailablePlace>>§_links: Option<Vec<Link>>Java Property Name: ‘links’
Implementations§
Trait Implementations§
Source§impl Clone for PlaceAvailabilityCollectionResponse
impl Clone for PlaceAvailabilityCollectionResponse
Source§fn clone(&self) -> PlaceAvailabilityCollectionResponse
fn clone(&self) -> PlaceAvailabilityCollectionResponse
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 Default for PlaceAvailabilityCollectionResponse
impl Default for PlaceAvailabilityCollectionResponse
Source§fn default() -> PlaceAvailabilityCollectionResponse
fn default() -> PlaceAvailabilityCollectionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlaceAvailabilityCollectionResponse
impl<'de> Deserialize<'de> for PlaceAvailabilityCollectionResponse
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 PlaceAvailabilityCollectionResponse
impl PartialEq for PlaceAvailabilityCollectionResponse
Source§fn eq(&self, other: &PlaceAvailabilityCollectionResponse) -> bool
fn eq(&self, other: &PlaceAvailabilityCollectionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaceAvailabilityCollectionResponse
Auto Trait Implementations§
impl Freeze for PlaceAvailabilityCollectionResponse
impl RefUnwindSafe for PlaceAvailabilityCollectionResponse
impl Send for PlaceAvailabilityCollectionResponse
impl Sync for PlaceAvailabilityCollectionResponse
impl Unpin for PlaceAvailabilityCollectionResponse
impl UnwindSafe for PlaceAvailabilityCollectionResponse
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