Struct cronparse::crontab::AnacrontabEntry [] [src]

pub struct AnacrontabEntry {
    pub period: Period,
    pub delay: u32,
    pub jobid: String,
    pub cmd: String,
}

Fields

period: Period delay: u32 jobid: String cmd: String

Trait Implementations

impl PartialEq for AnacrontabEntry
[src]

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

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

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

This method tests for !=.

impl Debug for AnacrontabEntry
[src]

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

Formats the value using the given formatter.

impl ToCrontabEntry for AnacrontabEntry
[src]

impl FromStr for AnacrontabEntry
[src]

type Err = CrontabEntryParseError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<AnacrontabEntryCrontabEntryParseError>

Parses a string s to return a value of this type. Read more