pub struct Cfg {
    pub minify_js: bool,
    pub minify_css: bool,
}
Expand description

Configuration settings that can be adjusted and passed to a minification function to change the minification approach.

Fields§

§minify_js: bool

If enabled, JavaScript in <script> tags are minified using minify-js.

Only <script> tags with a valid or no MIME type is considered to contain JavaScript, as per the specification.

§minify_css: bool

If enabled, CSS in <style> tags are minified.

Implementations§

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.

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.