pub enum JsErrorType<R> {
Unexpected(&'static str),
ParserValidation(Error<R>),
AstBuilderValidation(AstBuilderValidationErrorType, Meta),
ParserGeneralError,
}Variants§
Unexpected(&'static str)
ParserValidation(Error<R>)
AstBuilderValidation(AstBuilderValidationErrorType, Meta)
ParserGeneralError
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for JsErrorType<R>
impl<R> RefUnwindSafe for JsErrorType<R>where
R: RefUnwindSafe,
impl<R> !Send for JsErrorType<R>
impl<R> !Sync for JsErrorType<R>
impl<R> Unpin for JsErrorType<R>where
R: Unpin,
impl<R> UnwindSafe for JsErrorType<R>where
R: 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