Enum rsass::SassItem [] [src]

pub enum SassItem {
    None,
    Comment(String),
    Import(Value),
    Property(String, Value),
    Rule(Vec<Selector>, Vec<SassItem>),
    VariableDeclaration {
        name: String,
        val: Value,
        global: bool,
    },
    MixinDeclaration(MixinDeclaration),
    MixinCall {
        name: String,
        args: CallArgs,
    },
    IfStatement(Value, Vec<SassItem>, Vec<SassItem>),
}

Variants

Fields of VariableDeclaration

Fields of MixinCall

Trait Implementations

impl Clone for SassItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SassItem
[src]

Formats the value using the given formatter.

impl PartialEq for SassItem
[src]

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

This method tests for !=.

impl Eq for SassItem
[src]