mvniekerk / tokio-cron-scheduler

Schedule tasks on Tokio using cron-like annotation
Apache License 2.0
453 stars 54 forks source link

Missing `impl Error for JobSchedulerError` #23

Closed czocher closed 2 years ago

czocher commented 2 years ago

Adding and std::error::Error implmenentation for JobSchedulerErrror would make it much simpler to use with some error handling libraries, such as eyre.

I suggest using thiserror to auto-generate an implementation.

@mvniekerk if you find this to be a good idea I can implement it, just notify me ;).

mvniekerk commented 2 years ago

Hi @Czocher Check out v0.7.0, it implements std::error::Error now.