css_ast/values/cascade/
mod.rs1#![allow(warnings)]
2mod impls;
6use impls::*;
7
8#[syntax(" initial | inherit | unset | revert | revert-layer ")]
20#[derive(Parse, Peek, ToSpan, ToCursors, StyleValue, Visitable, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
21#[style_value(
22 initial = "see individual properties",
23 applies_to = "see individual properties",
24 inherited = "see individual properties",
25 percentages = "see individual properties",
26 canonical_order = "per grammar",
27 animation_type = "see individual properties"
28)]
29#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
30#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.all"))]
31#[visit]
32pub enum AllStyleValue {}