pub enum ScheduleWeekday {
Mon,
Tue,
Wed,
Thu,
Fri,
Sat,
Sun,
}Variants§
Trait Implementations§
Source§impl Clone for ScheduleWeekday
impl Clone for ScheduleWeekday
Source§fn clone(&self) -> ScheduleWeekday
fn clone(&self) -> ScheduleWeekday
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScheduleWeekday
impl Debug for ScheduleWeekday
Source§impl<'de> Deserialize<'de> for ScheduleWeekday
impl<'de> Deserialize<'de> for ScheduleWeekday
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 Ord for ScheduleWeekday
impl Ord for ScheduleWeekday
Source§fn cmp(&self, other: &ScheduleWeekday) -> Ordering
fn cmp(&self, other: &ScheduleWeekday) -> Ordering
1.21.0 (const: unstable) · 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 ScheduleWeekday
impl PartialEq for ScheduleWeekday
Source§fn eq(&self, other: &ScheduleWeekday) -> bool
fn eq(&self, other: &ScheduleWeekday) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ScheduleWeekday
impl PartialOrd for ScheduleWeekday
Source§impl Serialize for ScheduleWeekday
impl Serialize for ScheduleWeekday
impl Copy for ScheduleWeekday
impl Eq for ScheduleWeekday
impl StructuralPartialEq for ScheduleWeekday
Auto Trait Implementations§
impl Freeze for ScheduleWeekday
impl RefUnwindSafe for ScheduleWeekday
impl Send for ScheduleWeekday
impl Sync for ScheduleWeekday
impl Unpin for ScheduleWeekday
impl UnsafeUnpin for ScheduleWeekday
impl UnwindSafe for ScheduleWeekday
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