pub struct BusinessAwayMessageScheduleCustom {
pub start_date: i32,
pub end_date: i32,
}Expand description
Send away messages only in the specified time span
Fields§
§start_date: i32Point in time (Unix timestamp) when the away messages will start to be sent
end_date: i32Point in time (Unix timestamp) when the away messages will stop to be sent
Trait Implementations§
Source§impl Clone for BusinessAwayMessageScheduleCustom
impl Clone for BusinessAwayMessageScheduleCustom
Source§fn clone(&self) -> BusinessAwayMessageScheduleCustom
fn clone(&self) -> BusinessAwayMessageScheduleCustom
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 Default for BusinessAwayMessageScheduleCustom
impl Default for BusinessAwayMessageScheduleCustom
Source§fn default() -> BusinessAwayMessageScheduleCustom
fn default() -> BusinessAwayMessageScheduleCustom
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BusinessAwayMessageScheduleCustom
impl<'de> Deserialize<'de> for BusinessAwayMessageScheduleCustom
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 BusinessAwayMessageScheduleCustom
impl PartialEq for BusinessAwayMessageScheduleCustom
Source§fn eq(&self, other: &BusinessAwayMessageScheduleCustom) -> bool
fn eq(&self, other: &BusinessAwayMessageScheduleCustom) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BusinessAwayMessageScheduleCustom
Auto Trait Implementations§
impl Freeze for BusinessAwayMessageScheduleCustom
impl RefUnwindSafe for BusinessAwayMessageScheduleCustom
impl Send for BusinessAwayMessageScheduleCustom
impl Sync for BusinessAwayMessageScheduleCustom
impl Unpin for BusinessAwayMessageScheduleCustom
impl UnwindSafe for BusinessAwayMessageScheduleCustom
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