pub type AnyElement = Element<'static>;
Expand description
Helper type for an element with static lifetime
Aliased Type§
pub struct AnyElement {
pub name: Cow<'static, [u8]>,
pub values: Vec<Value<'static>>,
pub attributes: Attributes<'static>,
pub namespaces: NamespacesShared<'static>,
}
Fields§
§name: Cow<'static, [u8]>
Name of the element.
values: Vec<Value<'static>>
Child values of this element.
attributes: Attributes<'static>
Attributes of this element.
namespaces: NamespacesShared<'static>
List of valid namespaces for this element.