1 2 3 4 5 6 7 8 9 10 11
use codemap::Spanned; use crate::{interner::InternedString, value::Value}; /// A style: `color: red` #[derive(Clone, Debug)] pub(crate) struct Style { pub property: InternedString, pub value: Box<Spanned<Value>>, pub declared_as_custom_property: bool, }