Enum style::data::RestyleKind [] [src]

pub enum RestyleKind {
    MatchAndCascade,
    CascadeWithReplacements(RestyleHint),
    CascadeOnly,
}

The kind of restyle that a single element should do.

Variants

We need to run selector matching plus re-cascade, that is, a full restyle.

We need to recascade with some replacement rule, such as the style attribute, or animation rules.

We only need to recascade, for example, because only inherited properties in the parent changed.

Trait Implementations

impl Debug for RestyleKind
[src]

[src]

Formats the value using the given formatter. Read more