AttributeListType

Type Alias AttributeListType 

Source
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>>),
}

Variants§

§1.0.0

Borrowed(&'a [KeyValue<'a>])

Borrowed data.

§1.0.0

Owned(Vec<KeyValue<'a>>)

Owned data.