Struct sass_rs::Options [] [src]

pub struct Options {
    pub output_style: OutputStyle,
    pub precision: usize,
    pub indented_syntax: bool,
    pub include_paths: Vec<String>,
}

The user facing Options struct, where they can select the libsass options

Fields

The output format of the final CSS style.

How many digits after the decimal will be allowed.

true values enable Sass Indented Syntax for parsing the data string or file.

An array of paths that LibSass can look in to attempt to resolve your @import declarations.

Trait Implementations

impl Debug for Options
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Options
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for Options
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Options
[src]

[src]

Returns the "default value" for a type. Read more