pub enum ParseErrorKind {
UnexpectedEof,
UnexpectedToken,
IntTooLarge,
}
Variants§
Implementations§
Source§impl ParseErrorKind
impl ParseErrorKind
pub(crate) fn into_error(self, span: Span) -> ParseError
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParseErrorKind
impl RefUnwindSafe for ParseErrorKind
impl Send for ParseErrorKind
impl Sync for ParseErrorKind
impl Unpin for ParseErrorKind
impl UnwindSafe for ParseErrorKind
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