pub struct CronEntry {
pub name: CompactString,
pub schedule: String,
pub agent: CompactString,
pub message: String,
}Expand description
A cron job entry parsed from a markdown file.
Fields§
§name: CompactStringCron job name.
schedule: StringCron schedule expression (e.g. “0 0 9 * * *”).
agent: CompactStringName of the agent to invoke.
message: StringMessage template (from the markdown body).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CronEntry
impl RefUnwindSafe for CronEntry
impl Send for CronEntry
impl Sync for CronEntry
impl Unpin for CronEntry
impl UnsafeUnpin for CronEntry
impl UnwindSafe for CronEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more