[−][src]Enum nom::verbose_errors::Context
Contains the error that a parser can return
If you use the verbose-errors
compilation feature,
nom::Err
will be the enum defined here,
otherwise, it will amount to a ErrorKind<E=u32>
.
It can represent a linked list of errors, indicating the path taken in the parsing tree, with corresponding position in the input data. It depends on P, the input position (for a &[u8] parser, it would be a &[u8]), and E, the custom error type (by default, u32)
Variants
Code(I, ErrorKind<E>)
An error code, represented by an ErrorKind, which can contain a custom error code represented by E
List(Vec<(I, ErrorKind<E>)>)
Methods
impl<I, E> Context<I, E>
[src]
impl<I, E> Context<I, E>
pub fn into_error_kind(self) -> ErrorKind<E>
[src]
pub fn into_error_kind(self) -> ErrorKind<E>
Convert Err into ErrorKind.
This allows application code to use ErrorKind and stay independent from the verbose-errors features activation.
Trait Implementations
impl<I, H: From<I>, F, E: From<F>> Convert<Context<I, F>> for Context<H, E>
[src]
impl<I, H: From<I>, F, E: From<F>> Convert<Context<I, F>> for Context<H, E>
impl<I: PartialEq, E: PartialEq> PartialEq<Context<I, E>> for Context<I, E>
[src]
impl<I: PartialEq, E: PartialEq> PartialEq<Context<I, E>> for Context<I, E>
impl<I: Clone, E: Clone> Clone for Context<I, E>
[src]
impl<I: Clone, E: Clone> Clone for Context<I, E>
fn clone(&self) -> Context<I, E>
[src]
fn clone(&self) -> Context<I, E>
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<I: Eq, E: Eq> Eq for Context<I, E>
[src]
impl<I: Eq, E: Eq> Eq for Context<I, E>
impl<I: Debug, E: Debug> Debug for Context<I, E>
[src]
impl<I: Debug, E: Debug> Debug for Context<I, E>
Auto Trait Implementations
impl<I, E> Send for Context<I, E> where
E: Send,
I: Send,
impl<I, E> Send for Context<I, E> where
E: Send,
I: Send,
impl<I, E> Sync for Context<I, E> where
E: Sync,
I: Sync,
impl<I, E> Sync for Context<I, E> where
E: Sync,
I: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T