Struct style::stylesheets::supports_rule::SupportsRule [] [src]

pub struct SupportsRule {
    pub condition: SupportsCondition,
    pub rules: Arc<Locked<CssRules>>,
    pub enabled: bool,
    pub source_location: SourceLocation,
}

An @supports rule.

Fields

The parsed condition

Child rules

The result of evaluating the condition

The line and column of the rule's source code.

Trait Implementations

impl Debug for SupportsRule
[src]

[src]

Formats the value using the given formatter. Read more

impl ToCssWithGuard for SupportsRule
[src]

[src]

Serialize self in CSS syntax, writing to dest, using the given lock guard.

[src]

Serialize self in CSS syntax using the given lock guard and return a string. Read more

impl DeepCloneWithLock for SupportsRule
[src]

[src]

Deep clones this object.