Expand description
Contains low-level XML Parser.
For example XML like this:
<tag attribute="value"/><another-tag>text</another-tag>Will give following events:
| code | text |
|---|---|
| StartTag | “tag” |
| AttributeName | “attribute” |
| AttributeValue | “value” |
| EndTagImmediate | |
| StartTag | “another-tag” |
| Text | “text” |
| EndTag | “another-tag” |
| Eof |
Structs§
- Event
- Event represents a part of a XML document.
- Malformed
XmlError - XML was not well-formed (syntax error)
- Parser
- A low level XML parser that emits
Events as it reads the incoming XML.
Enums§
- Decode
Error - Represents error from decoding textual value
- Event
Code - Represents the type of the
Event. - MalformedXML
Kind - The kind of XML malformation that was encountered
- Parse
Error - Error while parsing