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. Read more

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]

impl PartialOrd for Item
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Item
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

Auto Trait Implementations

impl Send for Item

impl Sync for Item