Module xml_map

Module xml_map 

Source
Expand description

§Map structure for XML names to values

This module contains the supporting structures for the XmlMap struct, which is used to represent the set of attributes on an XML element.

It is used for instance in Event.

Structs§

IntoIter
An owning iterator over the entries of an XmlMap.
IntoNames
An owning iterator over the attribute namespaces and names of an XmlMap.
IntoValues
An owning iterator over the attribute values of an XmlMap.
Iter
An iterator over the entries of an XmlMap.
IterMut
A mutable iterator over the entries of an XmlMap.
Names
A iterator over the attribute namespaces and names of an XmlMap.
OccupiedEntry
A view into an occupied entry in a XmlMap.
VacantEntry
A view into a vacant entry in a XmlMap.
Values
A iterator over the attribute values of an XmlMap.
ValuesMut
A mutable iterator over the attribute values of an XmlMap.
XmlMap
Container struct for a set of attributes on an XML element.

Enums§

Entry
A view into a single entry in an XmlMap, which may either be vacant or occupied.

Type Aliases§

AttrMap
Type alias for the commonly used mapping type for XML attribute values.