pub enum DefaultWorkingDays {
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for DefaultWorkingDays
impl Clone for DefaultWorkingDays
Source§fn clone(&self) -> DefaultWorkingDays
fn clone(&self) -> DefaultWorkingDays
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 DefaultWorkingDays
impl Debug for DefaultWorkingDays
Source§impl Default for DefaultWorkingDays
impl Default for DefaultWorkingDays
Source§fn default() -> DefaultWorkingDays
fn default() -> DefaultWorkingDays
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DefaultWorkingDays
impl<'de> Deserialize<'de> for DefaultWorkingDays
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 Hash for DefaultWorkingDays
impl Hash for DefaultWorkingDays
Source§impl Ord for DefaultWorkingDays
impl Ord for DefaultWorkingDays
Source§fn cmp(&self, other: &DefaultWorkingDays) -> Ordering
fn cmp(&self, other: &DefaultWorkingDays) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DefaultWorkingDays
impl PartialEq for DefaultWorkingDays
Source§impl PartialOrd for DefaultWorkingDays
impl PartialOrd for DefaultWorkingDays
Source§impl Serialize for DefaultWorkingDays
impl Serialize for DefaultWorkingDays
impl Copy for DefaultWorkingDays
impl Eq for DefaultWorkingDays
impl StructuralPartialEq for DefaultWorkingDays
Auto Trait Implementations§
impl Freeze for DefaultWorkingDays
impl RefUnwindSafe for DefaultWorkingDays
impl Send for DefaultWorkingDays
impl Sync for DefaultWorkingDays
impl Unpin for DefaultWorkingDays
impl UnwindSafe for DefaultWorkingDays
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