Enum cronparse::schedule::Month [] [src]

pub enum Month {
    January,
    February,
    March,
    April,
    May,
    June,
    July,
    August,
    September,
    October,
    November,
    December,
}

Variants

January
February
March
April
May
June
July
August
September
October
November
December

Trait Implementations

impl From<u8> for Month

fn from(v: u8) -> Month

impl FromStr for Month

type Err = MonthParseError

fn from_str(s: &str) -> Result<Month, MonthParseError>

impl Display for Month

fn fmt(&self, f: &mut Formatter) -> Result

impl Limited for Month

fn min_value() -> Month

fn max_value() -> Month

impl Add<u8> for Month

type Output = Month

fn add(self, rhs: u8) -> Month

Derived Implementations

impl Ord for Month

fn cmp(&self, __arg_0: &Month) -> Ordering

impl PartialOrd for Month

fn partial_cmp(&self, __arg_0: &Month) -> Option<Ordering>

fn lt(&self, __arg_0: &Month) -> bool

fn le(&self, __arg_0: &Month) -> bool

fn gt(&self, __arg_0: &Month) -> bool

fn ge(&self, __arg_0: &Month) -> bool

impl Eq for Month

impl PartialEq for Month

fn eq(&self, __arg_0: &Month) -> bool

fn ne(&self, __arg_0: &Month) -> bool

impl Copy for Month

impl Clone for Month

fn clone(&self) -> Month

fn clone_from(&mut self, source: &Self)

impl Debug for Month

fn fmt(&self, __arg_0: &mut Formatter) -> Result