pub type AttrValue = IString;
Attribute value
pub enum AttrValue { Static(&'static str), Rc(Rc<str>), }
A static string slice.
A reference counted string slice.