Enum orm::json::ParserError
[−]
[src]
pub enum ParserError { SyntaxError(ErrorCode, usize, usize), IoError(Error), }
Variants
SyntaxError(ErrorCode, usize, usize)
msg, line, col
IoError(Error)
Trait Implementations
impl PartialEq<ParserError> for ParserError
[src]
fn eq(&self, other: &ParserError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Debug for ParserError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl From<Error> for ParserError
[src]
fn from(err: Error) -> ParserError
Performs the conversion.