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