css_ast/values/will_change/
mod.rs1#![allow(warnings)]
2mod impls;
5use super::prelude::*;
6use impls::*;
7#[syntax(" auto | <animateable-feature># ")]
19#[derive(
20 Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
21)]
22#[declaration_metadata(
23 initial = "auto",
24 applies_to = Elements,
25 property_group = WillChange,
26 computed_value_type = AsSpecified,
27 canonical_order = "per grammar",
28)]
29#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
30#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.will-change"))]
31#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
32pub struct WillChangeStyleValue<'a>;