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
sourceimpl AppointmentSlotReport
impl AppointmentSlotReport
sourcepub fn new() -> AppointmentSlotReport
pub fn new() -> AppointmentSlotReport
Availability information as per the service context queried.
Trait Implementations
sourceimpl Clone for AppointmentSlotReport
impl Clone for AppointmentSlotReport
sourcefn clone(&self) -> AppointmentSlotReport
fn clone(&self) -> AppointmentSlotReport
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 AppointmentSlotReport
impl Debug for AppointmentSlotReport
sourceimpl Default for AppointmentSlotReport
impl Default for AppointmentSlotReport
sourcefn default() -> AppointmentSlotReport
fn default() -> AppointmentSlotReport
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AppointmentSlotReport
impl<'de> Deserialize<'de> for AppointmentSlotReport
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 PartialEq<AppointmentSlotReport> for AppointmentSlotReport
impl PartialEq<AppointmentSlotReport> for AppointmentSlotReport
sourcefn eq(&self, other: &AppointmentSlotReport) -> bool
fn eq(&self, other: &AppointmentSlotReport) -> bool
sourceimpl Serialize for AppointmentSlotReport
impl Serialize for AppointmentSlotReport
impl StructuralPartialEq for AppointmentSlotReport
Auto Trait Implementations
impl RefUnwindSafe for AppointmentSlotReport
impl Send for AppointmentSlotReport
impl Sync for AppointmentSlotReport
impl Unpin for AppointmentSlotReport
impl UnwindSafe for AppointmentSlotReport
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