Expand description
Provides an Element
type, which represents DOM nodes, and a builder to create them with.
Structs§
- Attrs
- An iterator over the attributes of an
Element
. - Attrs
Mut - An iterator over the attributes of an
Element
, with the values mutable. - Children
- An iterator over references to child elements of an
Element
. - Children
Mut - An iterator over mutable references to child elements of an
Element
. - Contents
AsChildren - An iterator over references to child elements of an
Element
. - Custom
Item Writer - Wrapper around a
io::Write
and anrxml::writer::Encoder
, to provide a simple function to write an rxml Item to a writer. - Element
- A struct representing a DOM Element.
- Element
Builder - A builder for
Element
s. - Texts
- An iterator over references to child text nodes of an
Element
. - Texts
Mut - An iterator over mutable references to child text nodes of an
Element
.
Functions§
- escape
- helper function to escape a
&[u8]
and replace all xml special characters (<, >, &, ’, “) with their corresponding xml escaped value.
Type Aliases§
- Item
Writer - Type alias to simplify the use for the default namespace tracking implementation.
- Nodes
- An iterator over references to all child nodes of an
Element
. - Nodes
Mut - An iterator over mutable references to all child nodes of an
Element
.