pub enum LispParsingError {
UnclosedQuote {
opening_quote_position: TextPosition,
},
UnclosedParenthesis {
opening_parenthesis_position: TextPosition,
},
UnexpectedClosingParenthesis {
closing_parenthesis_position: TextPosition,
},
}
Variants§
UnclosedQuote
Fields
§
opening_quote_position: TextPosition
UnclosedParenthesis
Fields
§
opening_parenthesis_position: TextPosition
UnexpectedClosingParenthesis
Fields
§
closing_parenthesis_position: TextPosition
Trait Implementations§
Source§impl Debug for LispParsingError
impl Debug for LispParsingError
Source§impl PartialEq for LispParsingError
impl PartialEq for LispParsingError
impl Eq for LispParsingError
impl StructuralPartialEq for LispParsingError
Auto Trait Implementations§
impl Freeze for LispParsingError
impl RefUnwindSafe for LispParsingError
impl Send for LispParsingError
impl Sync for LispParsingError
impl Unpin for LispParsingError
impl UnwindSafe for LispParsingError
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