pub type Style = Cow<'static, str>;Expand description
Style representation.
rcss uses &'static str as style representation but we use Cow<'static, str> to support dynamic extension.
Aliased Type§
pub enum Style {
Borrowed(&'static str),
Owned(String),
}