Struct css_parser::Rule[][src]

pub struct Rule {
    pub selectors: Vec<Selector>,
    pub nested_rules: Option<Vec<Rule>>,
    pub declarations: Vec<(String, CSSValue)>,
    pub position: Option<Span>,
}
Expand description

A css rule with a selector and collection of declarations

Fields

selectors: Vec<Selector>nested_rules: Option<Vec<Rule>>declarations: Vec<(String, CSSValue)>position: Option<Span>

Trait Implementations

Depth indicates the indentation of current block

Returns position of node as span as it was parsed. May be invalid or none after mutation

Parses structure from string

Returns structure as valid string. If SourceMap passed will add mappings to SourceMap

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.