[][src]Struct lightspeed_scheduler::JobExecutor

pub struct JobExecutor { /* fields omitted */ }

Methods

impl JobExecutor[src]

pub fn is_empty(&self) -> bool[src]

Returns true if the JobExecutor contains no jobs.

pub fn len(&self) -> usize[src]

Returns the number of jobs in the JobExecutor.

pub fn clear(&mut self)[src]

Clear the JobExecutor, removing all jobs.

pub fn is_pending(&self) -> bool[src]

Returns true if there is at least one job pending.

pub fn run_pending(&mut self)[src]

Run pending jobs in the JobExecutor.

pub fn add_job<S: TryInto<Scheduler>>(
    &mut self,
    schedule: S,
    job: Job
) -> Result<(), SchedulerError> where
    SchedulerError: From<<S as TryInto<Scheduler>>::Error>, 
[src]

Adds a job to the JobExecutor.

pub fn add_job_with_scheduler(&mut self, schedule: Scheduler, job: Job)[src]

Adds a job to the JobExecutor.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Error = Infallible

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> WithSubscriber for T[src]