pub enum ParsingError {
EmptyLiteralError,
EmptyFreeGroupTermError,
NoLowerCaseError(char),
InvalidLiteralError(String),
NonMatchingBracketsError(String),
ParsingAtomError(String),
ParsingInverseError(String, String),
ParsingMeetError(String, String),
ParsingJoinError(String, String),
ParsingProductError(String, String, String),
}
Expand description
An error that arises by parsing literals from strings.
Variants§
EmptyLiteralError
EmptyFreeGroupTermError
NoLowerCaseError(char)
InvalidLiteralError(String)
NonMatchingBracketsError(String)
ParsingAtomError(String)
ParsingInverseError(String, String)
ParsingMeetError(String, String)
ParsingJoinError(String, String)
ParsingProductError(String, String, String)
Trait Implementations§
Source§impl Debug for ParsingError
impl Debug for ParsingError
Source§impl Display for ParsingError
impl Display for ParsingError
Source§impl PartialEq for ParsingError
impl PartialEq for ParsingError
impl Eq for ParsingError
impl StructuralPartialEq for ParsingError
Auto Trait Implementations§
impl Freeze for ParsingError
impl RefUnwindSafe for ParsingError
impl Send for ParsingError
impl Sync for ParsingError
impl Unpin for ParsingError
impl UnwindSafe for ParsingError
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