Enum tinyexpr::error::TinyExprError [] [src]

pub enum TinyExprError {
    Parse(ParseFloatError),
    Other(String),
}

Error type for codespawn crate.

Variants

Parse error

Any other kind of error

Trait Implementations

impl Debug for TinyExprError
[src]

Formats the value using the given formatter.

impl Display for TinyExprError
[src]

Formats the value using the given formatter. Read more

impl Error for TinyExprError
[src]

A short description of the error. Read more

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

impl From<String> for TinyExprError
[src]

Performs the conversion.

impl From<ParseFloatError> for TinyExprError
[src]

Performs the conversion.