parse_cron

Function parse_cron 

Source
pub fn parse_cron(input: &str) -> Result<String>
Expand description

Parse cron expression from either standard cron format or English description

Examples:

  • Standard: “0 0 9 * * *” (every day at 9am)
  • English: “every day at 9am”, “every monday at 14:00”, “every hour”