cronjob 0.4.17

cronjob library for scheduling your methods
Documentation
1
2
3
4
/// Trait for connecting your method to the `CronJob` object.
pub trait Command: Sync + Send + 'static {
    fn execute(&mut self, name: &str);
}