Enum cronparse::schedule::DayOfWeek [] [src]

pub enum DayOfWeek {
    Sunday,
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday,
}

Variants

Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday

Trait Implementations

impl Limited for DayOfWeek

fn min_value() -> DayOfWeek

fn max_value() -> DayOfWeek

impl From<u8> for DayOfWeek

fn from(v: u8) -> DayOfWeek

impl Display for DayOfWeek

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

impl FromStr for DayOfWeek

type Err = DayOfWeekParseError

fn from_str(s: &str) -> Result<DayOfWeek, DayOfWeekParseError>

impl Add<u8> for DayOfWeek

type Output = DayOfWeek

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

Derived Implementations

impl Ord for DayOfWeek

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

impl PartialOrd for DayOfWeek

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

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

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

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

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

impl Eq for DayOfWeek

impl PartialEq for DayOfWeek

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

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

impl Copy for DayOfWeek

impl Clone for DayOfWeek

fn clone(&self) -> DayOfWeek

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

impl Debug for DayOfWeek

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