pub enum ParseScheduleError {
ParseIntError(ParseIntError),
ArgumentCount,
InvalidStepRange(String),
InvalidRange(String),
InvalidMonthIndicator(String),
InvalidDayOfWeekIndicator(String),
}
Variants§
ParseIntError(ParseIntError)
ArgumentCount
InvalidStepRange(String)
InvalidRange(String)
InvalidMonthIndicator(String)
InvalidDayOfWeekIndicator(String)
Trait Implementations§
Source§impl Debug for ParseScheduleError
impl Debug for ParseScheduleError
Source§impl Display for ParseScheduleError
impl Display for ParseScheduleError
Source§impl Error for ParseScheduleError
impl Error for ParseScheduleError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ParseIntError> for ParseScheduleError
impl From<ParseIntError> for ParseScheduleError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseScheduleError
impl PartialEq for ParseScheduleError
impl StructuralPartialEq for ParseScheduleError
Auto Trait Implementations§
impl Freeze for ParseScheduleError
impl RefUnwindSafe for ParseScheduleError
impl Send for ParseScheduleError
impl Sync for ParseScheduleError
impl Unpin for ParseScheduleError
impl UnwindSafe for ParseScheduleError
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