pub enum ParseError {
DanglingLeftParenthesis,
PrematureRightParenthesis,
NothingToParse,
}
Expand description
Parsing error struct
The errors represented here are single-line oriented. For instance, a
DanglingLeftParenthesis
refers to an unclosed (
in the line.
Variants§
DanglingLeftParenthesis
A left parenthesis has been left open
PrematureRightParenthesis
A right parenthesis has been found without having read a corresponding left parenthesis
NothingToParse
No input provided
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Source§impl PartialEq for ParseError
impl PartialEq for ParseError
impl StructuralPartialEq for ParseError
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