Struct cronparse::schedule::Calendar [] [src]

pub struct Calendar {
    pub mins: Minutes,
    pub hrs: Hours,
    pub days: Days,
    pub mons: Months,
    pub dows: DaysOfWeek,
}

Fields

mins
hrs
days
mons
dows

Methods

impl Calendar

fn from_iter<'a, I>(parts: I) -> Result<Calendar, CalendarParseError> where I: Iterator<Item=&'a str>

Trait Implementations

impl Display for Calendar

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

impl FromStr for Calendar

type Err = CalendarParseError

fn from_str(s: &str) -> Result<Calendar, CalendarParseError>

Derived Implementations

impl PartialEq for Calendar

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

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

impl Debug for Calendar

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