pub enum BusinessAwayMessageSchedule {
Always,
OutsideOfOpeningHours,
Custom(BusinessAwayMessageScheduleCustom),
}Variants§
Always
Send away messages always
OutsideOfOpeningHours
Send away messages outside of the business opening hours
Custom(BusinessAwayMessageScheduleCustom)
Send away messages only in the specified time span
Trait Implementations§
Source§impl Clone for BusinessAwayMessageSchedule
impl Clone for BusinessAwayMessageSchedule
Source§fn clone(&self) -> BusinessAwayMessageSchedule
fn clone(&self) -> BusinessAwayMessageSchedule
Returns a copy 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 BusinessAwayMessageSchedule
impl Debug for BusinessAwayMessageSchedule
Source§impl<'de> Deserialize<'de> for BusinessAwayMessageSchedule
impl<'de> Deserialize<'de> for BusinessAwayMessageSchedule
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 BusinessAwayMessageSchedule
Auto Trait Implementations§
impl Freeze for BusinessAwayMessageSchedule
impl RefUnwindSafe for BusinessAwayMessageSchedule
impl Send for BusinessAwayMessageSchedule
impl Sync for BusinessAwayMessageSchedule
impl Unpin for BusinessAwayMessageSchedule
impl UnwindSafe for BusinessAwayMessageSchedule
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