pub enum CronFieldName {
Seconds,
Minutes,
Hours,
DayOfMonth,
Month,
DayOfWeek,
}Expand description
Which field of the cron expression caused a parse error.
Variants§
Seconds
Seconds (6-field cron only).
Minutes
Minutes field.
Hours
Hours field.
DayOfMonth
Day-of-month field.
Month
Month field.
DayOfWeek
Day-of-week field.
Trait Implementations§
Source§impl Clone for CronFieldName
impl Clone for CronFieldName
Source§fn clone(&self) -> CronFieldName
fn clone(&self) -> CronFieldName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CronFieldName
Source§impl Debug for CronFieldName
impl Debug for CronFieldName
Source§impl Display for CronFieldName
impl Display for CronFieldName
impl Eq for CronFieldName
Source§impl PartialEq for CronFieldName
impl PartialEq for CronFieldName
impl StructuralPartialEq for CronFieldName
Auto Trait Implementations§
impl Freeze for CronFieldName
impl RefUnwindSafe for CronFieldName
impl Send for CronFieldName
impl Sync for CronFieldName
impl Unpin for CronFieldName
impl UnsafeUnpin for CronFieldName
impl UnwindSafe for CronFieldName
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