Enum exar::ParseError
[−]
[src]
pub enum ParseError { ParseError(String), MissingField(usize), }
A list specifying categories of parse error.
Variants
ParseError(String)
The parsing failed because of the given reason.
MissingField(usize)
The parsing failed because of a missing field at the given position.
Trait Implementations
impl Eq for ParseError
[src]
impl PartialEq for ParseError
[src]
fn eq(&self, __arg_0: &ParseError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ParseError) -> bool
This method tests for !=
.
impl Debug for ParseError
[src]
impl Clone for ParseError
[src]
fn clone(&self) -> ParseError
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 Display for ParseError
[src]
fn fmt(&self, f: &mut Formatter) -> DisplayResult
Formats the value using the given formatter.