[][src]Struct crony::Runner

pub struct Runner { /* fields omitted */ }

Runner that will hold all the jobs and will start up the execution and eventually will stop it.

Implementations

impl Runner[src]

pub fn new() -> Self[src]

Create new runner

pub fn add(mut self: Self, job: Box<dyn Job>) -> Self[src]

Add jobs into the runner

panics if you try to push a job onto already started runner

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

Number of jobs ready to start running

pub fn run(self) -> Self[src]

Start the loop and job execution

pub fn stop(mut self: Self)[src]

Stop the spawned runner

Trait Implementations

impl Default for Runner[src]

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, 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.