The next fire time strictly after `now` (None if it never fires again).
(&self, now: DateTime<Utc>)
| 37 | |
| 38 | /// The next fire time strictly after `now` (None if it never fires again). |
| 39 | pub fn next_fire_after(&self, now: DateTime<Utc>) -> Option<DateTime<Utc>> { |
| 40 | self.schedule.after(&now).next() |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | /// Normalize a cron expression to the 6-field form the `cron` crate expects: |