pub enum ExpressionParserError {
MissingToken,
}
Expand description
§ExpressionParserError
Parser Error represents an error while parsing an expression
Variants§
MissingToken
Trait Implementations§
Source§impl Clone for ExpressionParserError
impl Clone for ExpressionParserError
Source§fn clone(&self) -> ExpressionParserError
fn clone(&self) -> ExpressionParserError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExpressionParserError
impl Debug for ExpressionParserError
Source§impl PartialEq for ExpressionParserError
impl PartialEq for ExpressionParserError
impl Copy for ExpressionParserError
impl StructuralPartialEq for ExpressionParserError
Auto Trait Implementations§
impl Freeze for ExpressionParserError
impl RefUnwindSafe for ExpressionParserError
impl Send for ExpressionParserError
impl Sync for ExpressionParserError
impl Unpin for ExpressionParserError
impl UnwindSafe for ExpressionParserError
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