Struct azure_functions::timer::ScheduleStatus[][src]

pub struct ScheduleStatus {
    pub last: DateTime<Utc>,
    pub next: DateTime<Utc>,
    pub last_updated: DateTime<Utc>,
}

Represents a timer binding schedule status.

Fields

The last recorded schedule occurrence.

The expected next schedule occurrence.

The last time the timer record was updated.

This is used to re-calculate next with the current schedule after a host restart.

Trait Implementations

impl Debug for ScheduleStatus
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations