pub enum ShortWeekday {
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday,
}
Variants§
Trait Implementations§
Source§impl Clone for ShortWeekday
impl Clone for ShortWeekday
Source§fn clone(&self) -> ShortWeekday
fn clone(&self) -> ShortWeekday
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 ShortWeekday
impl Debug for ShortWeekday
Source§impl<'de> Deserialize<'de> for ShortWeekday
impl<'de> Deserialize<'de> for ShortWeekday
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 ShortWeekday
impl PartialEq for ShortWeekday
Source§impl Serialize for ShortWeekday
impl Serialize for ShortWeekday
impl Copy for ShortWeekday
impl StructuralPartialEq for ShortWeekday
Auto Trait Implementations§
impl Freeze for ShortWeekday
impl RefUnwindSafe for ShortWeekday
impl Send for ShortWeekday
impl Sync for ShortWeekday
impl Unpin for ShortWeekday
impl UnwindSafe for ShortWeekday
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