Enum nom::Err [] [src]

pub enum Err<'a> {
    Code(u32),
    Node(u32Box<Err<'a>>),
    Position(u32&'a [u8]),
    NodePosition(u32&'a [u8]Box<Err<'a>>),
}

Variants

Code(u32)Node(u32Box<Err<'a>>)Position(u32&'a [u8])NodePosition(u32&'a [u8]Box<Err<'a>>)

Trait Implementations

impl<'a> Clone for Err<'a>
[src]

fn clone(&self) -> Err<'a>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a> Eq for Err<'a>
[src]

impl<'a> PartialEq for Err<'a>
[src]

fn eq(&self, __arg_0: &Err<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Err<'a>) -> bool

This method tests for !=.

impl<'a> Debug for Err<'a>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.