Crate saffron[][src]

A "Quartz scheduler"-like cron parser powering Cron Triggers on Cloudflare Workers.

Modules

parse

A module allowing for inspection of a parsed cron expression. This can be used to accurately describe an expression without reducing it into a cron value.

Structs

Cron

A cron value. This can be used to iterate over all future matching times or quickly check if a given time matches.

CronTimesIter

An iterator over the times matching the contained cron value. Created with Cron::iter_from and Cron::iter_after.