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
Declarations
A step formed by a declaration block specified by the CSS.
Fields of Declarations
block: Arc<Locked<PropertyDeclarationBlock>> | The declaration block per se. |
ComputedValues
A synthetic step computed from the current computed values at the time of the animation.
Trait Implementations
impl Debug for KeyframesStepValue
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl MallocSizeOf for KeyframesStepValue
[src]
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
[src]
Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself. Read more