Enum lightspeed_scheduler::scheduler::Scheduler[][src]

pub enum Scheduler {
    Cron(Schedule),
    Interval {
        interval_duration: Duration,
        execute_at_startup: bool,
    },
    Multi(Vec<Scheduler>),
    Never,
}

Variants

Cron(Schedule)

Set to execute on set time periods

Tuple Fields of Cron

0: Schedule
Interval

Set to execute exactly duration away from the previous execution. If

Fields of Interval

interval_duration: Durationexecute_at_startup: bool
Multi(Vec<Scheduler>)

Multi shceduler: the execution is trigger where at least one of the schedulers in matched

Tuple Fields of Multi

0: Vec<Scheduler>
Never

Set to execute to never

Implementations

Trait Implementations

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more