pub struct Options {
    pub alert_ascii: bool,
    pub alert_color: Option<bool>,
    pub importers: Vec<SassImporter>,
    pub load_paths: Vec<PathBuf>,
    pub logger: Option<SassLogger>,
    pub quiet_deps: bool,
    pub source_map: bool,
    pub source_map_include_sources: bool,
    pub style: OutputStyle,
    pub verbose: bool,
    pub charset: bool,
}
Expand description

Options that can be passed to [Sass::compile].

More information:

Fields

alert_ascii: bool

More information:

alert_color: Option<bool>

More information:

importers: Vec<SassImporter>

More information:

load_paths: Vec<PathBuf>

More information:

logger: Option<SassLogger>

More information:

quiet_deps: bool

More information:

source_map: bool

More information:

source_map_include_sources: bool

More information:

style: OutputStyle

More information:

verbose: bool

More information:

charset: bool

More information:

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. 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.

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.