pub type AttributeName<'a> = Cow<'a, str>;
An AttributeName represents the name of an attribute in a document.
AttributeName
pub enum AttributeName<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.