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