Enum symbolic_expressions::SexpError [−][src]
pub enum SexpError {
Parse(ParseError),
Other(String),
Io(Error),
FromUtf8(FromUtf8Error),
Float(ParseFloatError),
Int(ParseIntError),
}
Expand description
errors that can happen in this library
Variants
Parse(ParseError)
Tuple Fields
0: ParseError
parse error
Other(String)
Tuple Fields
0: String
other error
Io(Error)
Tuple Fields
0: Error
IO Error
FromUtf8(FromUtf8Error)
Tuple Fields
Utf8 Error parsing error
Float(ParseFloatError)
Tuple Fields
floating point parsing error
Int(ParseIntError)
Tuple Fields
integer parsing error
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
Performs the conversion.
Performs the conversion.
Performs the conversion.