pub enum DateErrorKind {
WrongDateStringFormat,
WrongTimeStringFormat,
WrongDateTimeStringFormat,
WrongTimeShiftStringFormat,
Inner,
}Variants§
WrongDateStringFormat
WrongTimeStringFormat
WrongDateTimeStringFormat
WrongTimeShiftStringFormat
Inner
Implementations§
Source§impl DateErrorKind
impl DateErrorKind
pub fn into_boxed_error(self) -> Box<dyn Error>
Trait Implementations§
Source§impl Clone for DateErrorKind
impl Clone for DateErrorKind
Source§fn clone(&self) -> DateErrorKind
fn clone(&self) -> DateErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DateErrorKind
impl Debug for DateErrorKind
Source§impl Display for DateErrorKind
impl Display for DateErrorKind
Source§impl From<DateErrorKind> for DateError
impl From<DateErrorKind> for DateError
Source§fn from(kind: DateErrorKind) -> Self
fn from(kind: DateErrorKind) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DateErrorKind
impl PartialEq for DateErrorKind
impl Copy for DateErrorKind
impl StructuralPartialEq for DateErrorKind
Auto Trait Implementations§
impl Freeze for DateErrorKind
impl RefUnwindSafe for DateErrorKind
impl Send for DateErrorKind
impl Sync for DateErrorKind
impl Unpin for DateErrorKind
impl UnwindSafe for DateErrorKind
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