pub enum DayOfMonth {
Show 31 variants
First,
Second,
Third,
Fourth,
Fifth,
Sixth,
Seventh,
Eighth,
Ninth,
Tenth,
Eleventh,
Twelfth,
Thirteenth,
Fourteenth,
Fifteenth,
Sixteenth,
Seventeenth,
Eighteenth,
Nineteenth,
Twentieth,
TwentyFirst,
TwentySecond,
TwentyThird,
TwentyFourth,
TwentyFifth,
TwentySixth,
TwentySeventh,
TwentyEighth,
TwentyNinth,
Thirtieth,
ThirtyFirst,
}Variants§
First
Second
Third
Fourth
Fifth
Sixth
Seventh
Eighth
Ninth
Tenth
Eleventh
Twelfth
Thirteenth
Fourteenth
Fifteenth
Sixteenth
Seventeenth
Eighteenth
Nineteenth
Twentieth
TwentyFirst
TwentySecond
TwentyThird
TwentyFourth
TwentyFifth
TwentySixth
TwentySeventh
TwentyEighth
TwentyNinth
Thirtieth
ThirtyFirst
Implementations§
Trait Implementations§
Source§impl Clone for DayOfMonth
impl Clone for DayOfMonth
Source§fn clone(&self) -> DayOfMonth
fn clone(&self) -> DayOfMonth
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 DayOfMonth
impl Debug for DayOfMonth
Source§impl<'de> Deserialize<'de> for DayOfMonth
impl<'de> Deserialize<'de> for DayOfMonth
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 Display for DayOfMonth
impl Display for DayOfMonth
Source§impl From<DayOfMonth> for NonEmpty<DayOfMonth>
impl From<DayOfMonth> for NonEmpty<DayOfMonth>
Source§fn from(value: DayOfMonth) -> Self
fn from(value: DayOfMonth) -> Self
Converts to this type from the input type.
Source§impl FromStr for DayOfMonth
impl FromStr for DayOfMonth
Source§impl Ord for DayOfMonth
impl Ord for DayOfMonth
Source§fn cmp(&self, other: &DayOfMonth) -> Ordering
fn cmp(&self, other: &DayOfMonth) -> 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 DayOfMonth
impl PartialEq for DayOfMonth
Source§fn eq(&self, other: &DayOfMonth) -> bool
fn eq(&self, other: &DayOfMonth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DayOfMonth
impl PartialOrd for DayOfMonth
Source§impl Serialize for DayOfMonth
impl Serialize for DayOfMonth
Source§impl VariantArray for DayOfMonth
impl VariantArray for DayOfMonth
impl Copy for DayOfMonth
impl Eq for DayOfMonth
impl StructuralPartialEq for DayOfMonth
Auto Trait Implementations§
impl Freeze for DayOfMonth
impl RefUnwindSafe for DayOfMonth
impl Send for DayOfMonth
impl Sync for DayOfMonth
impl Unpin for DayOfMonth
impl UnsafeUnpin for DayOfMonth
impl UnwindSafe for DayOfMonth
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