pub struct Options {
pub output_style: OutputStyle,
pub precision: usize,
pub indented_syntax: bool,
pub include_paths: Vec<String>,
}
Expand description
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 StructuralPartialEq for Options
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more