Enum rsass::Item [] [src]

pub enum Item {
    Import(Value),
    VariableDeclaration {
        name: String,
        val: Value,
        default: bool,
        global: bool,
    },
    AtRule {
        name: String,
        args: Value,
        body: Option<Vec<Item>>,
    },
    MixinDeclaration {
        name: String,
        args: FormalArgs,
        body: Vec<Item>,
    },
    MixinCall {
        name: String,
        args: CallArgs,
        body: Vec<Item>,
    },
    Content,
    FunctionDeclaration {
        name: String,
        func: SassFunction,
    },
    Return(Value),
    IfStatement(ValueVec<Item>, Vec<Item>),
    Each(StringValueVec<Item>),
    For {
        name: String,
        from: Box<Value>,
        to: Box<Value>,
        inclusive: bool,
        body: Vec<Item>,
    },
    While(ValueVec<Item>),
    Rule(Selectors, Vec<Item>),
    NamespaceRule(StringValueVec<Item>),
    Property(SassStringValuebool),
    Comment(String),
    None,
}

Every sass file is a sequence of sass items. Scoping items contains further sequences of items.

Variants

Fields of VariableDeclaration

Fields of AtRule

Fields of MixinDeclaration

Fields of MixinCall

Fields of FunctionDeclaration

The value may be or evaluate to a list.

Fields of For

Trait Implementations

impl Clone for Item
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Item
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Item
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Item
[src]