Enum rustils::ParseError 
                   
                       [−]
                   
               [src]
pub enum ParseError {
    InvalidNumber(String),
    InvalidString(String),
}Variants
InvalidNumber(String)InvalidString(String)Trait Implementations
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 Error for ParseError[src]
fn description(&self) -> &'static str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more