[][src]Struct azure_functions::bindings::TimerInfo

pub struct TimerInfo {
    pub schedule_status: Option<ScheduleStatus>,
    pub is_past_due: bool,
}

Represents the timer information from a timer trigger binding.

Examples

A function that runs every 5 minutes:

use azure_functions::bindings::TimerInfo;
use azure_functions::func;

#[func]
#[binding(name = "_info", schedule = "0 */5 * * * *")]
pub fn timer(_info: &TimerInfo) {
    info!("Rust Azure function ran!");
}

Fields

schedule_status: Option<ScheduleStatus>

The schedule status for the timer.

If schedule monitoring is not enabled for the timer, this field will be None.

is_past_due: bool

Determines if the timer invocation is due to a missed schedule occurrence.

Trait Implementations

impl From<TypedData> for TimerInfo[src]

impl Debug for TimerInfo[src]

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

Auto Trait Implementations

impl Send for TimerInfo

impl Sync for TimerInfo

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Erased for T