pub enum UpdateReservationError {
Status400(UpdateReservationResponse),
Status403(UpdateReservationResponse),
Status404(UpdateReservationResponse),
Status413(UpdateReservationResponse),
Status415(UpdateReservationResponse),
Status429(UpdateReservationResponse),
Status500(UpdateReservationResponse),
Status503(UpdateReservationResponse),
UnknownValue(Value),
}Expand description
struct for typed errors of method update_reservation
Variants§
Status400(UpdateReservationResponse)
Status403(UpdateReservationResponse)
Status404(UpdateReservationResponse)
Status413(UpdateReservationResponse)
Status415(UpdateReservationResponse)
Status429(UpdateReservationResponse)
Status500(UpdateReservationResponse)
Status503(UpdateReservationResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for UpdateReservationError
impl Clone for UpdateReservationError
Source§fn clone(&self) -> UpdateReservationError
fn clone(&self) -> UpdateReservationError
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 UpdateReservationError
impl Debug for UpdateReservationError
Source§impl<'de> Deserialize<'de> for UpdateReservationError
impl<'de> Deserialize<'de> for UpdateReservationError
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
Auto Trait Implementations§
impl Freeze for UpdateReservationError
impl RefUnwindSafe for UpdateReservationError
impl Send for UpdateReservationError
impl Sync for UpdateReservationError
impl Unpin for UpdateReservationError
impl UnwindSafe for UpdateReservationError
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