pub fn make_instance() -> Result<Crontab, ReadError>
Create an instance of Crontab.
Crontab
This helper reads the current user’s crontab and creates a Crontab instance out of it.
use cronrunner::crontab; let crontab = match crontab::make_instance() { Ok(crontab) => crontab, Err(_) => return (), };
Will forward ReadError from Reader if any.
ReadError
Reader