pub enum ErrorKind<'a, Y = SimpleYear> {
ParseError(ParseError<'a>),
BuildError(BuildError<Y>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, Y> Freeze for ErrorKind<'a, Y>where
Y: Freeze,
impl<'a, Y> RefUnwindSafe for ErrorKind<'a, Y>where
Y: RefUnwindSafe,
impl<'a, Y> Send for ErrorKind<'a, Y>where
Y: Send,
impl<'a, Y> Sync for ErrorKind<'a, Y>where
Y: Sync,
impl<'a, Y> Unpin for ErrorKind<'a, Y>where
Y: Unpin,
impl<'a, Y> UnwindSafe for ErrorKind<'a, Y>where
Y: UnwindSafe,
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