[][src]Struct izta::cron::Cron

pub struct Cron {
    pub minutes: Option<u32>,
    pub hours: Option<u32>,
    pub day_of_month: Option<u32>,
    pub month: Option<u32>,
    pub day_of_week: Option<u32>,
}

Cron represents a cron-like schedule for a task

Fields

minutes: Option<u32>

0-59 - the minute to run task

hours: Option<u32>

0-23 - the hour to run task

day_of_month: Option<u32>

1-31 - the day of the month to run task

month: Option<u32>

1-12 - the month to run task

day_of_week: Option<u32>

0-6, Sunday=0 - day of the week to run task

Methods

impl Cron[src]

pub fn new() -> Cron[src]

Creates a new Cron

pub fn minutes(self, m: u32) -> Cron[src]

pub fn hours(self, m: u32) -> Cron[src]

pub fn day_of_month(self, m: u32) -> Cron[src]

pub fn month(self, m: u32) -> Cron[src]

pub fn day_of_week(self, m: u32) -> Cron[src]

pub fn next_run(&self, cur: DateTime<Utc>) -> i64[src]

Return the next scheduled time (in milliseconds since epoch) past cur (never equals cur)

Trait Implementations

impl Clone for Cron[src]

impl Default for Cron[src]

impl Debug for Cron[src]

impl Serialize for Cron[src]

impl<'de> Deserialize<'de> for Cron[src]

Auto Trait Implementations

impl Send for Cron

impl Sync for Cron

impl Unpin for Cron

impl UnwindSafe for Cron

impl RefUnwindSafe for Cron

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self