pub struct GetAppointmentSlotsResponse {
pub payload: Option<Box<AppointmentSlotReport>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetAppointmentSlotsResponse : The response of fetching appointment slots based on service context.
Fields§
§payload: Option<Box<AppointmentSlotReport>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetAppointmentSlotsResponse
impl GetAppointmentSlotsResponse
Sourcepub fn new() -> GetAppointmentSlotsResponse
pub fn new() -> GetAppointmentSlotsResponse
The response of fetching appointment slots based on service context.
Trait Implementations§
Source§impl Clone for GetAppointmentSlotsResponse
impl Clone for GetAppointmentSlotsResponse
Source§fn clone(&self) -> GetAppointmentSlotsResponse
fn clone(&self) -> GetAppointmentSlotsResponse
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 GetAppointmentSlotsResponse
impl Debug for GetAppointmentSlotsResponse
Source§impl Default for GetAppointmentSlotsResponse
impl Default for GetAppointmentSlotsResponse
Source§fn default() -> GetAppointmentSlotsResponse
fn default() -> GetAppointmentSlotsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAppointmentSlotsResponse
impl<'de> Deserialize<'de> for GetAppointmentSlotsResponse
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 GetAppointmentSlotsResponse
Auto Trait Implementations§
impl Freeze for GetAppointmentSlotsResponse
impl RefUnwindSafe for GetAppointmentSlotsResponse
impl Send for GetAppointmentSlotsResponse
impl Sync for GetAppointmentSlotsResponse
impl Unpin for GetAppointmentSlotsResponse
impl UnsafeUnpin for GetAppointmentSlotsResponse
impl UnwindSafe for GetAppointmentSlotsResponse
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