pub enum ErrMode<E> {
Incomplete(Needed),
Backtrack(E),
Cut(E),
}
Expand description
Add parse error state to ParserError
s
Variants§
Incomplete(Needed)
There was not enough data to determine the appropriate action
More data needs to be buffered before retrying the parse.
This must only be set when the Stream
is partial, like with
Partial
Convert this into an Backtrack
with Parser::complete_err
Backtrack(E)
The parser failed with a recoverable error (the default).
For example, a parser for json values might include a
dec_uint
as one case in an alt
combinator. If it fails, the next case should be tried.
Cut(E)
The parser had an unrecoverable error.
The parser was on the right branch, so directly report it to the user rather than trying
other branches. You can use cut_err()
combinator to switch
from ErrMode::Backtrack
to ErrMode::Cut
.
For example, one case in an alt
combinator found a unique prefix
and you want any further errors parsing the case to be reported to the user.
Implementations§
source§impl<E> ErrMode<E>
impl<E> ErrMode<E>
sourcepub fn is_incomplete(&self) -> bool
pub fn is_incomplete(&self) -> bool
Tests if the result is Incomplete
sourcepub fn map<E2, F>(self, f: F) -> ErrMode<E2>where
F: FnOnce(E) -> E2,
pub fn map<E2, F>(self, f: F) -> ErrMode<E2>where
F: FnOnce(E) -> E2,
Applies the given function to the inner error
sourcepub fn convert<F>(self) -> ErrMode<F>where
E: ErrorConvert<F>,
pub fn convert<F>(self) -> ErrMode<F>where
E: ErrorConvert<F>,
Automatically converts between errors if the underlying type supports it
sourcepub fn into_inner(self) -> Option<E>
pub fn into_inner(self) -> Option<E>
Unwrap the mode, returning the underlying error
Returns None
for ErrMode::Incomplete
Trait Implementations§
source§impl<I: Stream, C, E: AddContext<I, C>> AddContext<I, C> for ErrMode<E>
impl<I: Stream, C, E: AddContext<I, C>> AddContext<I, C> for ErrMode<E>
source§fn add_context(
self,
input: &I,
token_start: &<I as Stream>::Checkpoint,
context: C,
) -> Self
fn add_context( self, input: &I, token_start: &<I as Stream>::Checkpoint, context: C, ) -> Self
source§impl<I, EXT, E> FromExternalError<I, EXT> for ErrMode<E>where
E: FromExternalError<I, EXT>,
impl<I, EXT, E> FromExternalError<I, EXT> for ErrMode<E>where
E: FromExternalError<I, EXT>,
source§fn from_external_error(input: &I, kind: ErrorKind, e: EXT) -> Self
fn from_external_error(input: &I, kind: ErrorKind, e: EXT) -> Self
ParserError::from_error_kind
but also include an external error.source§impl<I: Stream, E: ParserError<I>> ParserError<I> for ErrMode<E>
impl<I: Stream, E: ParserError<I>> ParserError<I> for ErrMode<E>
source§fn from_error_kind(input: &I, kind: ErrorKind) -> Self
fn from_error_kind(input: &I, kind: ErrorKind) -> Self
ErrorKind
source§fn append(
self,
input: &I,
token_start: &<I as Stream>::Checkpoint,
kind: ErrorKind,
) -> Self
fn append( self, input: &I, token_start: &<I as Stream>::Checkpoint, kind: ErrorKind, ) -> Self
ParserError::from_error_kind
but merges it with the existing error. Read moresource§impl<E: PartialEq> PartialEq for ErrMode<E>
impl<E: PartialEq> PartialEq for ErrMode<E>
impl<E: Eq> Eq for ErrMode<E>
impl<E> StructuralPartialEq for ErrMode<E>
Auto Trait Implementations§
impl<E> Freeze for ErrMode<E>where
E: Freeze,
impl<E> RefUnwindSafe for ErrMode<E>where
E: RefUnwindSafe,
impl<E> Send for ErrMode<E>where
E: Send,
impl<E> Sync for ErrMode<E>where
E: Sync,
impl<E> Unpin for ErrMode<E>where
E: Unpin,
impl<E> UnwindSafe for ErrMode<E>where
E: 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)