pub struct UpdateReservationResponse {
pub payload: Option<Box<UpdateReservationRecord>>,
pub errors: Option<Vec<Error>>,
}Expand description
UpdateReservationResponse : Response schema for the updateReservation operation.
Fields§
§payload: Option<Box<UpdateReservationRecord>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl UpdateReservationResponse
impl UpdateReservationResponse
Sourcepub fn new() -> UpdateReservationResponse
pub fn new() -> UpdateReservationResponse
Response schema for the updateReservation operation.
Trait Implementations§
Source§impl Clone for UpdateReservationResponse
impl Clone for UpdateReservationResponse
Source§fn clone(&self) -> UpdateReservationResponse
fn clone(&self) -> UpdateReservationResponse
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 UpdateReservationResponse
impl Debug for UpdateReservationResponse
Source§impl Default for UpdateReservationResponse
impl Default for UpdateReservationResponse
Source§fn default() -> UpdateReservationResponse
fn default() -> UpdateReservationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateReservationResponse
impl<'de> Deserialize<'de> for UpdateReservationResponse
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
impl StructuralPartialEq for UpdateReservationResponse
Auto Trait Implementations§
impl Freeze for UpdateReservationResponse
impl RefUnwindSafe for UpdateReservationResponse
impl Send for UpdateReservationResponse
impl Sync for UpdateReservationResponse
impl Unpin for UpdateReservationResponse
impl UnwindSafe for UpdateReservationResponse
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