Trait style::stylesheets::NestedRuleIterationCondition [] [src]

pub trait NestedRuleIterationCondition {
    fn process_import(
        guard: &SharedRwLockReadGuard,
        device: &Device,
        quirks_mode: QuirksMode,
        rule: &ImportRule
    ) -> bool;
fn process_media(
        guard: &SharedRwLockReadGuard,
        device: &Device,
        quirks_mode: QuirksMode,
        rule: &MediaRule
    ) -> bool;
fn process_document(
        guard: &SharedRwLockReadGuard,
        device: &Device,
        quirks_mode: QuirksMode,
        rule: &DocumentRule
    ) -> bool;
fn process_supports(
        guard: &SharedRwLockReadGuard,
        device: &Device,
        quirks_mode: QuirksMode,
        rule: &SupportsRule
    ) -> bool; }

RulesIterator.

Required Methods

Whether we should process the nested rules in a given @import rule.

Whether we should process the nested rules in a given @media rule.

Whether we should process the nested rules in a given @-moz-document rule.

Whether we should process the nested rules in a given @supports rule.

Implementors