service_install/
schedule.rs

1#[derive(Debug, Clone)]
2pub enum Schedule {
3    /// Local time
4    Daily(time::Time),
5    /// Run once very this duration, 
6    /// note the service runs with second accuracy
7    Every(std::time::Duration),
8}