pub type AttrValue = Cow<'static, str>;
Attribute value
enum AttrValue { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.