[][src]Struct taskem::job::JobScheduler

pub struct JobScheduler<T: TimeZone + Send + Sync + 'static> where
    <T as TimeZone>::Offset: Send
{ pub job: Job, // some fields omitted }

Fields

job: Job

Methods

impl<T: TimeZone + Send + Sync + 'static> JobScheduler<T> where
    <T as TimeZone>::Offset: Send
[src]

pub fn new<S: TryInto<Scheduler>>(
    schedule: S,
    timezone: T,
    job: Job
) -> Result<Self, SchedulerError> where
    SchedulerError: From<<S as TryInto<Scheduler>>::Error>, 
[src]

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

Returns true if this job is pending execution.

pub fn run(&self) -> Result<(), Box<dyn Error>>[src]

Run the job immediately and re-schedule it.

Auto Trait Implementations

impl<T> Send for JobScheduler<T>

impl<T> Unpin for JobScheduler<T> where
    T: Unpin,
    <T as TimeZone>::Offset: Unpin

impl<T> Sync for JobScheduler<T>

impl<T> UnwindSafe for JobScheduler<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for JobScheduler<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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