pub enum ParseError {
UnexpectedToken(String),
UnexpectedEndOfInput,
MismatchedBrackets,
InvalidPipeNotation,
InvalidNumber(String),
}Variants§
UnexpectedToken(String)
UnexpectedEndOfInput
MismatchedBrackets
InvalidPipeNotation
InvalidNumber(String)
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Source§impl Display for ParseError
impl Display for ParseError
Source§impl From<ParseError> for RuntimeError
impl From<ParseError> for RuntimeError
Source§fn from(err: ParseError) -> Self
fn from(err: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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