Enum symbolic_expressions::Error [] [src]

pub enum Error {
    Other(String),
    Parse(ParseErrorString),
    Io(Error),
    FromUtf8(FromUtf8Error),
}

Error type for symbolic-expressions

Variants

any other error type

intended to give more detailed parser errrors, actually not used currently

IO error

UTF8 parsing error

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.