Expand description
Low-level XML parser primitives used by all parser modules.
Structs§
- XmlParser
- A low-level XML parser wrapper providing event-based reading with a reusable buffer.
Functions§
- get_
attribute - Returns the value of the named XML attribute as a string, or
Noneif absent. - get_
attribute_ f32 - Returns the named attribute parsed as an
f32, or an error if absent or invalid. - get_
attribute_ u32 - Returns the named attribute parsed as a
u32, or an error if absent or invalid. - get_
attribute_ u32_ opt - Returns the named attribute parsed as a
u32, orNoneif absent, or an error if invalid. - get_
attribute_ uuid - Returns the
uuidorp:uuidattribute parsed as aUuid, orNoneif absent.