Enum style::stylesheets::keyframes_rule::KeyframesStepValue [] [src]

pub enum KeyframesStepValue {
    Declarations {
        block: Arc<Locked<PropertyDeclarationBlock>>,
    },
    ComputedValues,
}

A keyframes step value. This can be a synthetised keyframes animation, that is, one autogenerated from the current computed values, or a list of declarations to apply.

TODO: Find a better name for this?

Variants

A step formed by a declaration block specified by the CSS.

Fields of Declarations

The declaration block per se.

A synthetic step computed from the current computed values at the time of the animation.

Trait Implementations

impl Debug for KeyframesStepValue
[src]

[src]

Formats the value using the given formatter. Read more

impl MallocSizeOf for KeyframesStepValue
[src]

[src]

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself. Read more