Enum nom::simple_errors::Context [−][src]
Variants
Code(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: Debug, E: Debug> Debug for Context<I, E>
[src]
impl<I: Debug, E: Debug> Debug for Context<I, E>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
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>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl<I: PartialEq, E: PartialEq> PartialEq for Context<I, E>
[src]
impl<I: PartialEq, E: PartialEq> PartialEq for Context<I, E>
fn eq(&self, other: &Context<I, E>) -> bool
[src]
fn eq(&self, other: &Context<I, E>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Context<I, E>) -> bool
[src]
fn ne(&self, other: &Context<I, E>) -> bool
This method tests for !=
.
impl<I, F, E: From<F>> Convert<Context<I, F>> for Context<I, E>
[src]
impl<I, F, E: From<F>> Convert<Context<I, F>> for Context<I, E>