Crate basic_scheduler [] [src]

Structs

BasicEvent

A basic scheduled event. task will be called once when added to the scheduler. A mutable reference to state will be passed to task on each call. if task returns Some(Duration), task will be rerun after that amount of time has passed. if task returns None, the BasicEvent will be dropped

Duration

ISO 8601 time duration with nanosecond precision. This also allows for the negative duration; see individual methods for details.

Scheduler

Traits

Eventer