#[repr(u64)]pub enum MonthDay {
Show 31 variants
D1 = 1,
D2 = 2,
D3 = 3,
D4 = 4,
D5 = 5,
D6 = 6,
D7 = 7,
D8 = 8,
D9 = 9,
D10 = 10,
D11 = 11,
D12 = 12,
D13 = 13,
D14 = 14,
D15 = 15,
D16 = 16,
D17 = 17,
D18 = 18,
D19 = 19,
D20 = 20,
D21 = 21,
D22 = 22,
D23 = 23,
D24 = 24,
D25 = 25,
D26 = 26,
D27 = 27,
D28 = 28,
D29 = 29,
D30 = 30,
D31 = 31,
}
Variants§
D1 = 1
D2 = 2
D3 = 3
D4 = 4
D5 = 5
D6 = 6
D7 = 7
D8 = 8
D9 = 9
D10 = 10
D11 = 11
D12 = 12
D13 = 13
D14 = 14
D15 = 15
D16 = 16
D17 = 17
D18 = 18
D19 = 19
D20 = 20
D21 = 21
D22 = 22
D23 = 23
D24 = 24
D25 = 25
D26 = 26
D27 = 27
D28 = 28
D29 = 29
D30 = 30
D31 = 31
Trait Implementations§
Source§impl TryFromData<u64> for MonthDay
impl TryFromData<u64> for MonthDay
fn try_from_data(val: u64) -> Result<Self>
impl Copy for MonthDay
impl Eq for MonthDay
impl StructuralPartialEq for MonthDay
Auto Trait Implementations§
impl Freeze for MonthDay
impl RefUnwindSafe for MonthDay
impl Send for MonthDay
impl Sync for MonthDay
impl Unpin for MonthDay
impl UnwindSafe for MonthDay
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