Struct MshParserError

Source
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>

Source

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)

Source

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)

Source

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>

Source

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>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I: Debug + HexDisplay + ?Sized> Display for MshParserError<&I>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I: Debug + HexDisplay + ?Sized> Error for MshParserError<&I>

1.30.0 · Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<I: Debug, E: Into<MshParserError<I>>> From<Err<E>> for MshParserError<I>

Convert a nom::Err to MshParserError

Source§

fn from(error: Err<E>) -> Self

Converts to this type from the input type.
Source§

impl<I> ParseError<I> for MshParserError<I>

Source§

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

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

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
Source§

fn from_char(input: I, _: char) -> Self

creates an error from an input position and an expected character
Source§

fn or(self, other: Self) -> Self

combines two existing error. This function is used to compare errors generated in various branches of [alt]

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.