Enum over::error::OverError [] [src]

pub enum OverError {
    ArrOutOfBounds(usize),
    ArrTypeMismatch(TypeType),
    CircularParentReferences,
    FieldNotFound(String),
    NoParentFound,
    ParseError(String),
    TupOutOfBounds(usize),
    TypeMismatch(Type),
}

The fabulous OVER error type.

Variants

Trait Implementations

impl Debug for OverError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for OverError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for OverError
[src]

impl Display for OverError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for OverError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl From<ParseError> for OverError
[src]

[src]

Performs the conversion.