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