Enum cronparse::schedule::CalendarParseError [] [src]

pub enum CalendarParseError {
    Minutes(IntervalParseError),
    Hours(IntervalParseError),
    Days(IntervalParseError),
    Months(IntervalParseError),
    DaysOfWeek(IntervalParseError),
    MissingMinutes,
    MissingHours,
    MissingDays,
    MissingMonths,
    MissingDaysOfWeek,
}

Variants

Minutes(IntervalParseError)Hours(IntervalParseError)Days(IntervalParseError)Months(IntervalParseError)DaysOfWeek(IntervalParseError)MissingMinutesMissingHoursMissingDaysMissingMonthsMissingDaysOfWeek

Trait Implementations

impl PartialEq for CalendarParseError
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Debug for CalendarParseError
[src]

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

Formats the value using the given formatter.

impl Display for CalendarParseError
[src]

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

Formats the value using the given formatter.

impl Error for CalendarParseError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more