pub struct AppointmentSlotReport {
pub scheduling_type: Option<SchedulingType>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub appointment_slots: Option<Vec<AppointmentSlot>>,
}Expand description
AppointmentSlotReport : Availability information as per the service context queried.
Fields§
§scheduling_type: Option<SchedulingType>Defines the type of slots.
start_time: Option<String>Start Time from which the appointment slots are generated in ISO 8601 format.
end_time: Option<String>End Time up to which the appointment slots are generated in ISO 8601 format.
appointment_slots: Option<Vec<AppointmentSlot>>A list of time windows along with associated capacity in which the service can be performed.
Implementations§
Source§impl AppointmentSlotReport
impl AppointmentSlotReport
Sourcepub fn new() -> AppointmentSlotReport
pub fn new() -> AppointmentSlotReport
Availability information as per the service context queried.
Trait Implementations§
Source§impl Clone for AppointmentSlotReport
impl Clone for AppointmentSlotReport
Source§fn clone(&self) -> AppointmentSlotReport
fn clone(&self) -> AppointmentSlotReport
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 AppointmentSlotReport
impl Debug for AppointmentSlotReport
Source§impl Default for AppointmentSlotReport
impl Default for AppointmentSlotReport
Source§fn default() -> AppointmentSlotReport
fn default() -> AppointmentSlotReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppointmentSlotReport
impl<'de> Deserialize<'de> for AppointmentSlotReport
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
Source§impl PartialEq for AppointmentSlotReport
impl PartialEq for AppointmentSlotReport
Source§impl Serialize for AppointmentSlotReport
impl Serialize for AppointmentSlotReport
impl StructuralPartialEq for AppointmentSlotReport
Auto Trait Implementations§
impl Freeze for AppointmentSlotReport
impl RefUnwindSafe for AppointmentSlotReport
impl Send for AppointmentSlotReport
impl Sync for AppointmentSlotReport
impl Unpin for AppointmentSlotReport
impl UnwindSafe for AppointmentSlotReport
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