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

The archived version of the pointer metadata for this type.

Converts some archived metadata to the pointer metadata for itself.

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.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type for metadata in pointers and references to Self.

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.