Struct tasklet::Task[][src]

pub struct Task<'a, T> where
    T: TimeZone
{ /* fields omitted */ }

A structure that contains the basic information of the job.

Implementations

impl<'a, T> Task<'a, T> where
    T: TimeZone
[src]

Task implementation.

pub fn new(
    expression: &str,
    description: Option<&str>,
    repeats: Option<usize>,
    timezone: T
) -> Task<'a, T>
[src]

Create a new instance of type Task.

Arguments

  • expression - A valid cron expression.
  • description - (Optional) description.
  • repeats - maximum number of repeats, if None this task will run forever.
  • timezone - The tasks' timezone.

Examples

// Create a new task instance. This task will execute every second for 5 times.
let _task = Task::new("* * * * * * * ", Some("Runs every second!"), Some(5), chrono::Utc);
// Create a new task instance. This task will run on second 30 of each minute forever.
let _task_1 = Task::new("30 * * * * * *", Some("Runs every second 30 of a minute!"), None, chrono::Local);

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Task<'a, T>[src]

impl<'a, T> !Send for Task<'a, T>[src]

impl<'a, T> !Sync for Task<'a, T>[src]

impl<'a, T> Unpin for Task<'a, T> where
    T: Unpin,
    <T as TimeZone>::Offset: Unpin
[src]

impl<'a, T> !UnwindSafe for Task<'a, T>[src]

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.