[][src]Struct sass_rs::Options

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

output_style: OutputStyle

The output format of the final CSS style.

precision: usize

How many digits after the decimal will be allowed.

indented_syntax: bool

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

include_paths: Vec<String>

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

Trait Implementations

impl PartialEq<Options> for Options[src]

impl Clone for Options[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Options[src]

impl Debug for Options[src]

Auto Trait Implementations

impl Send for Options

impl Sync for Options

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]