pub enum JobType {
FixedTime,
IntervalWildcard,
}
Expand description
Categorizes a cron pattern as either a Fixed-Time Job or an Interval/Wildcard Job. This is used to apply specific Daylight Saving Time (DST) transition rules.
Variants§
Trait Implementations§
impl Eq for JobType
impl StructuralPartialEq for JobType
Auto Trait Implementations§
impl Freeze for JobType
impl RefUnwindSafe for JobType
impl Send for JobType
impl Sync for JobType
impl Unpin for JobType
impl UnwindSafe for JobType
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