rsass/output/style.rs
1/// Selected target format.
2/// Only formats that are variants of this type are supported by rsass.
3#[derive(Clone, Copy, Debug, PartialEq, Eq)]
4pub enum Style {
5 /// The expanded format, nice readable css.
6 Expanded,
7 /// The compressed format, saves download size.
8 Compressed,
9 /// Special format used by the inspect(value) sass function
10 Introspection,
11}