pub enum SyntaxInterpreterError<'a, E: 'a> {
Unexpected(SyntaxElement<'a>),
Lexer(String),
Custom(E),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, E> Freeze for SyntaxInterpreterError<'a, E>where
E: Freeze,
impl<'a, E> RefUnwindSafe for SyntaxInterpreterError<'a, E>where
E: RefUnwindSafe,
impl<'a, E> Send for SyntaxInterpreterError<'a, E>where
E: Send,
impl<'a, E> Sync for SyntaxInterpreterError<'a, E>where
E: Sync,
impl<'a, E> Unpin for SyntaxInterpreterError<'a, E>where
E: Unpin,
impl<'a, E> UnwindSafe for SyntaxInterpreterError<'a, E>where
E: 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