css_ast/values/round_display/
mod.rs1#![allow(warnings)]
2mod impls;
6use impls::*;
7
8#[syntax(" none | parent | display ")]
18#[derive(Parse, Peek, ToSpan, ToCursors, StyleValue, Visitable, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
19#[style_value(
20 initial = "none",
21 applies_to = "all elements",
22 inherited = "yes",
23 percentages = "n/a",
24 canonical_order = "per grammar",
25 animation_type = "discrete"
26)]
27#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
28#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.border-boundary"))]
29#[visit]
30pub enum BorderBoundaryStyleValue {}