Struct cron_rs::CronEntry [] [src]

pub struct CronEntry {
    pub id: u32,
    pub cronId: u32,
    pub treeId: u64,
    pub treePath: String,
    pub intervals: String,
    pub command: String,
    pub description: String,
    pub daemon: bool,
    pub testRun: bool,
    pub timeoutSeconds: u32,
    pub autokill: bool,
    pub alarmEmail: bool,
    pub alarmSms: bool,
    pub alarmUsers: String,
    pub host: String,
    pub watch: bool,
    pub active: bool,
}

Fields

Methods

impl CronEntry
[src]

[src]

[src]

Trait Implementations

impl Debug for CronEntry
[src]

[src]

Formats the value using the given formatter.

impl FromStr for CronEntry
[src]

The associated error which can be returned from parsing.

[src]

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