#[derive(Debug, Clone, Copy, PartialEq)]/// See the [Sass docs](https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style)
/// for examples of how each style looks.
pubenumOutputStyle{
Nested,
Expanded,
Compact,
Compressed,}/// The user facing Options struct, where they can select the libsass
/// options
#[derive(Debug, PartialEq, Clone)]pubstructOptions{/// The output format of the final CSS style.
puboutput_style: OutputStyle,
/// How many digits after the decimal will be allowed.
pubprecision:usize,
/// `true` values enable Sass Indented Syntax for parsing the data string or file.
pubindented_syntax:bool,
/// An array of paths that LibSass can look in to attempt to resolve your @import declarations.
pubinclude_paths:Vec<String>,
}implDefault forOptions{fndefault()->Self{
Options {
output_style:OutputStyle::Nested,
precision:5,
indented_syntax:false,
include_paths:vec![],}}}