Enum egg::RecExprParseError
source · pub enum RecExprParseError<E> {
EmptySexp,
HeadList(Sexp),
BadOp(E),
BadSexp(SexpError),
}
Expand description
An error type for failures when attempting to parse an s-expression as a
RecExpr<L>
.
Variants§
EmptySexp
An empty s-expression was found. Usually this is caused by an empty list “()” somewhere in the input.
HeadList(Sexp)
A list was found where an operator was expected. This is caused by s-expressions of the form “((a b c) d e f).”
BadOp(E)
Attempting to parse an operator into a value of type L
failed.
BadSexp(SexpError)
An error occurred while parsing the s-expression itself, generally because the input had an invalid structure (e.g. unpaired parentheses).
Trait Implementations§
source§impl<E: Debug> Debug for RecExprParseError<E>
impl<E: Debug> Debug for RecExprParseError<E>
source§impl<E> Display for RecExprParseError<E>where
E: Display,
impl<E> Display for RecExprParseError<E>where
E: Display,
source§impl<E> Error for RecExprParseError<E>
impl<E> Error for RecExprParseError<E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<E> Freeze for RecExprParseError<E>where
E: Freeze,
impl<E> !RefUnwindSafe for RecExprParseError<E>
impl<E> Send for RecExprParseError<E>where
E: Send,
impl<E> Sync for RecExprParseError<E>where
E: Sync,
impl<E> Unpin for RecExprParseError<E>where
E: Unpin,
impl<E> !UnwindSafe for RecExprParseError<E>
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