Struct peg::error::ParseError
source · [−]pub struct ParseError<L> {
pub location: L,
pub expected: ExpectedSet,
}
Expand description
An error from a parse failure
Fields
location: L
The furthest position the parser reached in the input
expected: ExpectedSet
The set of literals that failed to match at that position
Trait Implementations
sourceimpl<L> Clone for ParseError<L> where
L: Clone,
impl<L> Clone for ParseError<L> where
L: Clone,
sourcefn clone(&self) -> ParseError<L>
fn clone(&self) -> ParseError<L>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<L> Debug for ParseError<L> where
L: Debug,
impl<L> Debug for ParseError<L> where
L: Debug,
sourceimpl<L> Display for ParseError<L> where
L: Display,
impl<L> Display for ParseError<L> where
L: Display,
sourceimpl<L> Error for ParseError<L> where
L: Display + Debug,
impl<L> Error for ParseError<L> where
L: Display + Debug,
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourceimpl<L> PartialEq<ParseError<L>> for ParseError<L> where
L: PartialEq<L>,
impl<L> PartialEq<ParseError<L>> for ParseError<L> where
L: PartialEq<L>,
sourcefn eq(&self, other: &ParseError<L>) -> bool
fn eq(&self, other: &ParseError<L>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParseError<L>) -> bool
fn ne(&self, other: &ParseError<L>) -> bool
This method tests for !=
.
impl<L> Eq for ParseError<L> where
L: Eq,
impl<L> StructuralEq for ParseError<L>
impl<L> StructuralPartialEq for ParseError<L>
Auto Trait Implementations
impl<L> RefUnwindSafe for ParseError<L> where
L: RefUnwindSafe,
impl<L> Send for ParseError<L> where
L: Send,
impl<L> Sync for ParseError<L> where
L: Sync,
impl<L> Unpin for ParseError<L> where
L: Unpin,
impl<L> UnwindSafe for ParseError<L> where
L: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more