pub enum StrictParseError {
UnknownCommand(Vec<UnknownCommandError>),
Pest(Error<Rule>),
}
Expand description
Error identifying location of unknown command or other parsing error
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StrictParseError
impl RefUnwindSafe for StrictParseError
impl Send for StrictParseError
impl Sync for StrictParseError
impl Unpin for StrictParseError
impl UnwindSafe for StrictParseError
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