logo
pub enum TailwindErrorKind {
    IOError(Error),
    FormatError(Error),
    SyntaxError(String),
    TypeMismatch(String),
    RuntimeError(String),
    UndefinedVariable {
        name: String,
    },
    Incomplete,
    Unreachable,
}
Expand description

Actual error data for the error

Variants

IOError(Error)

The error type for I/O operations

FormatError(Error)

The error type which is returned from formatting a message into a stream.

SyntaxError(String)

The error type which is

TypeMismatch(String)

The error type which is

RuntimeError(String)

The error type which is occurred at runtime

UndefinedVariable

Fields

name: String

The name of the undefined variable

Runtime error when variable is undefined

Incomplete

Parsing not complete

Unreachable

A forbidden cst_node encountered

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.