pub struct MshParserError<I> {
pub backtrace: Vec<(I, MshParserErrorKind)>,
}
Expand description
Error type returned by the crate when parsing fails
Fields§
§backtrace: Vec<(I, MshParserErrorKind)>
Error backtrace that contains per level a reference into the input where the error ocurred and the corresponding error kind
Implementations§
Source§impl<I> MshParserError<I>
impl<I> MshParserError<I>
Sourcepub fn begin_msh_errors(&self) -> impl Iterator<Item = &(I, MshParserErrorKind)>
pub fn begin_msh_errors(&self) -> impl Iterator<Item = &(I, MshParserErrorKind)>
Iterator that skips all errors in the beginning of the backtrace that are not actual MSH format errors (i.e. internal nom parser errors)
Sourcepub fn filter_msh_errors(
&self,
) -> impl Iterator<Item = &(I, MshParserErrorKind)>
pub fn filter_msh_errors( &self, ) -> impl Iterator<Item = &(I, MshParserErrorKind)>
Iterator over all errors in the backtrace that are actual MSH format errors (i.e. filters out all internal nom parser errors)
Sourcepub fn first_msh_error(&self) -> Option<MshParserErrorKind>
pub fn first_msh_error(&self) -> Option<MshParserErrorKind>
Returns the kind of the first error in the backtrace that is an actual MSH format error kind (i.e. skips internal nom parser errors)
Source§impl<I: Clone> MshParserError<I>
impl<I: Clone> MshParserError<I>
Sourcepub fn filtered_backtrace(&self) -> Vec<(I, MshParserErrorKind)>
pub fn filtered_backtrace(&self) -> Vec<(I, MshParserErrorKind)>
Returns a backtrace containing only the errors that are actual MSH format errors (i.e. without internal nom parser errors)
Trait Implementations§
Source§impl<I: Debug> Debug for MshParserError<I>
impl<I: Debug> Debug for MshParserError<I>
Source§impl<I: Debug + HexDisplay + ?Sized> Display for MshParserError<&I>
impl<I: Debug + HexDisplay + ?Sized> Display for MshParserError<&I>
Source§impl<I: Debug + HexDisplay + ?Sized> Error for MshParserError<&I>
impl<I: Debug + HexDisplay + ?Sized> Error for MshParserError<&I>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<I: Debug, E: Into<MshParserError<I>>> From<Err<E>> for MshParserError<I>
Convert a nom::Err to MshParserError
impl<I: Debug, E: Into<MshParserError<I>>> From<Err<E>> for MshParserError<I>
Convert a nom::Err to MshParserError
Source§impl<I> ParseError<I> for MshParserError<I>
impl<I> ParseError<I> for MshParserError<I>
Source§fn from_error_kind(input: I, kind: ErrorKind) -> Self
fn from_error_kind(input: I, kind: ErrorKind) -> Self
creates an error from the input position and an ErrorKind
Source§fn append(input: I, kind: ErrorKind, other: Self) -> Self
fn append(input: I, kind: ErrorKind, other: Self) -> Self
combines an existing error with a new one created from the input
position and an ErrorKind. This is useful when backtracking
through a parse tree, accumulating error context on the way
Source§fn add_context(input: I, ctx: &'static str, other: Self) -> Self
fn add_context(input: I, ctx: &'static str, other: Self) -> Self
create a new error from an input position, a static string and an existing error.
This is used mainly in the context combinator, to add user friendly information
to errors when backtracking through a parse tree
Auto Trait Implementations§
impl<I> Freeze for MshParserError<I>
impl<I> RefUnwindSafe for MshParserError<I>where
I: RefUnwindSafe,
impl<I> Send for MshParserError<I>where
I: Send,
impl<I> Sync for MshParserError<I>where
I: Sync,
impl<I> Unpin for MshParserError<I>where
I: Unpin,
impl<I> UnwindSafe for MshParserError<I>where
I: UnwindSafe,
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