css_ast/values/exclusions/
mod.rs1#![allow(warnings)]
2mod impls;
5use super::prelude::*;
6use impls::*;
7#[syntax(" auto | both | start | end | minimum | maximum | clear ")]
17#[derive(
18 Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
19)]
20#[declaration_metadata(
21 initial = "auto",
22 applies_to = Unknown,
23 animation_type = Discrete,
24 property_group = Exclusions,
25 computed_value_type = AsSpecified,
26 canonical_order = "per grammar",
27)]
28#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
29#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.wrap-flow"))]
30#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
31pub enum WrapFlowStyleValue {}
32
33#[syntax(" wrap | none ")]
43#[derive(
44 Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
45)]
46#[declaration_metadata(
47 initial = "wrap",
48 applies_to = Block,
49 animation_type = Discrete,
50 property_group = Exclusions,
51 computed_value_type = AsSpecified,
52 canonical_order = "per grammar",
53)]
54#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
55#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.wrap-through"))]
56#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
57pub enum WrapThroughStyleValue {}