Struct crontab::ScheduleComponents [] [src]

pub struct ScheduleComponents {
    pub months: Vec<u32>,
    pub days: Vec<u32>,
    pub weekdays: Vec<u32>,
    pub hours: Vec<u32>,
    pub minutes: Vec<u32>,
    pub seconds: Vec<u32>,
}

The components of a crontab schedule.

Fields

Months in the schedule.

Days in the schedule.

Weekdays in the schedule.

Hours in the schedule.

Minutes in the schedule.

Seconds in the schedule.

Trait Implementations

impl Clone for ScheduleComponents
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ScheduleComponents
[src]

[src]

Formats the value using the given formatter.

impl Default for ScheduleComponents
[src]

[src]

Returns the "default value" for a type. Read more