Struct cronparse::crontab::UserCrontabEntry [] [src]

pub struct UserCrontabEntry {
    pub sched: Schedule,
    pub cmd: String,
}

Fields

sched: Schedule cmd: String

Trait Implementations

impl PartialEq for UserCrontabEntry
[src]

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

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

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

This method tests for !=.

impl Debug for UserCrontabEntry
[src]

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

Formats the value using the given formatter.

impl ToCrontabEntry for UserCrontabEntry
[src]

impl FromStr for UserCrontabEntry
[src]

type Err = CrontabEntryParseError

The associated error which can be returned from parsing.

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

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