pub enum BusinessAppointmentSettingsAlignmentTime {
ServiceDuration,
QuarterHourly,
HalfHourly,
Hourly,
}Expand description
The time unit of the service duration for bookings.
Variants§
ServiceDuration
The service duration unit is one visit of a fixed time interval specified by the seller.
QuarterHourly
The service duration unit is a 15-minute interval. Bookings can be scheduled every quarter hour.
HalfHourly
The service duration unit is a 30-minute interval. Bookings can be scheduled every half hour.
Hourly
The service duration unit is a 60-minute interval. Bookings can be scheduled every hour.
Trait Implementations§
Source§impl Clone for BusinessAppointmentSettingsAlignmentTime
impl Clone for BusinessAppointmentSettingsAlignmentTime
Source§fn clone(&self) -> BusinessAppointmentSettingsAlignmentTime
fn clone(&self) -> BusinessAppointmentSettingsAlignmentTime
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<'de> Deserialize<'de> for BusinessAppointmentSettingsAlignmentTime
impl<'de> Deserialize<'de> for BusinessAppointmentSettingsAlignmentTime
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 BusinessAppointmentSettingsAlignmentTime
impl PartialEq for BusinessAppointmentSettingsAlignmentTime
Source§fn eq(&self, other: &BusinessAppointmentSettingsAlignmentTime) -> bool
fn eq(&self, other: &BusinessAppointmentSettingsAlignmentTime) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BusinessAppointmentSettingsAlignmentTime
impl StructuralPartialEq for BusinessAppointmentSettingsAlignmentTime
Auto Trait Implementations§
impl Freeze for BusinessAppointmentSettingsAlignmentTime
impl RefUnwindSafe for BusinessAppointmentSettingsAlignmentTime
impl Send for BusinessAppointmentSettingsAlignmentTime
impl Sync for BusinessAppointmentSettingsAlignmentTime
impl Unpin for BusinessAppointmentSettingsAlignmentTime
impl UnwindSafe for BusinessAppointmentSettingsAlignmentTime
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