css_ast/values/exclusions/
mod.rs1#![allow(warnings)]
2mod impls;
6use impls::*;
7
8#[syntax(" auto | both | start | end | minimum | maximum | clear ")]
18#[derive(Parse, Peek, ToSpan, ToCursors, StyleValue, Visitable, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
19#[style_value(
20 initial = "auto",
21 applies_to = "block-level elements.",
22 inherited = "no",
23 percentages = "n/a",
24 canonical_order = "per grammar",
25 animation_type = "not animatable"
26)]
27#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
28#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.wrap-flow"))]
29#[visit]
30pub enum WrapFlowStyleValue {}
31
32#[syntax(" wrap | none ")]
42#[derive(Parse, Peek, ToSpan, ToCursors, StyleValue, Visitable, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
43#[style_value(
44 initial = "wrap",
45 applies_to = "block-level elements",
46 inherited = "no",
47 percentages = "n/a",
48 canonical_order = "per grammar",
49 animation_type = "not animatable"
50)]
51#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
52#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.wrap-through"))]
53#[visit]
54pub enum WrapThroughStyleValue {}