pub type AttributeListType<'a> = Cow<'a, [KeyValue<'a>]>;
Type alias for a list of attributes.
pub enum AttributeListType<'a> { Borrowed(&'a [KeyValue<'a>]), Owned(Vec<KeyValue<'a>>), }
Borrowed data.
Owned data.