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