pub enum MinifyErrorKind {
    CircularCustomMedia {
        name: String,
    },
    CustomMediaNotDefined {
        name: String,
    },
    UnsupportedCustomMediaBooleanLogic {
        custom_media_loc: Location,
    },
}
Expand description

A transformation error.

Variants

CircularCustomMedia

Fields

name: String

The name of the @custom-media rule that was referenced circularly.

A circular @custom-media rule was detected.

CustomMediaNotDefined

Fields

name: String

The name of the @custom-media rule that was not defined.

Attempted to reference a custom media rule that doesn’t exist.

UnsupportedCustomMediaBooleanLogic

Fields

custom_media_loc: Location

The source location of the @custom-media rule with unsupported boolean logic.

Boolean logic with media types in @custom-media rules is not supported.

Implementations

👎 Deprecated:

use MinifyErrorKind::to_string() or fmt::Display instead

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. 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

Deserializes using the given deserializer

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.