Enum bullet_core::error::Error [] [src]

pub enum Error {
    MissingFunction(String),
    ParseError {
        token: String,
        pos: usize,
        expected: Vec<String>,
        input: String,
    },
    IntegerError,
    Poly(PolyError),
    Undefined(String),
    ShapeMismatch(usizeusize),
    Todo(&'static str),
    Other(String),
    Overflow,
}

Variants

Fields of ParseError

Methods

impl Error
[src]

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<PolyError> for Error
[src]

[src]

Performs the conversion.