pub enum DeleteReservationError {
Status401(Error),
Status403(Error),
Status404(Error),
UnknownValue(Value),
}Expand description
struct for typed errors of method delete_reservation
Variants
Status401(Error)
Status403(Error)
Status404(Error)
UnknownValue(Value)
Trait Implementations
sourceimpl Clone for DeleteReservationError
impl Clone for DeleteReservationError
sourcefn clone(&self) -> DeleteReservationError
fn clone(&self) -> DeleteReservationError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DeleteReservationError
impl Debug for DeleteReservationError
sourceimpl<'de> Deserialize<'de> for DeleteReservationError
impl<'de> Deserialize<'de> for DeleteReservationError
sourcefn 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
sourceimpl Serialize for DeleteReservationError
impl Serialize for DeleteReservationError
Auto Trait Implementations
impl RefUnwindSafe for DeleteReservationError
impl Send for DeleteReservationError
impl Sync for DeleteReservationError
impl Unpin for DeleteReservationError
impl UnwindSafe for DeleteReservationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more