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]
impl ToCrontabEntry for AnacrontabEntry[src]
fn to_crontab_entry(self) -> CrontabEntry
impl Display 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<AnacrontabEntry, CrontabEntryParseError>
Parses a string s to return a value of this type. Read more