pub enum Month {
January = 1,
Feburary = 2,
March = 3,
April = 4,
May = 5,
June = 6,
July = 7,
August = 8,
September = 9,
October = 10,
November = 11,
December = 12,
}
Expand description
Represents a calendar month for [Application::Calendar]
Variants§
January = 1
January
Feburary = 2
Feburary
March = 3
March
April = 4
April
May = 5
May
June = 6
June
July = 7
July
August = 8
August
September = 9
September
October = 10
October
November = 11
November
December = 12
December
Trait Implementations§
Source§impl PartialOrd for Month
impl PartialOrd for Month
impl Copy for Month
impl StructuralPartialEq for Month
Auto Trait Implementations§
impl Freeze for Month
impl RefUnwindSafe for Month
impl Send for Month
impl Sync for Month
impl Unpin for Month
impl UnwindSafe for Month
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