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