pub fn parse_ulong(s: &str) -> Result<u32, XmlError>Expand description
Unsigned long parser (32-bit) per Spec §7.1.4 Tab.7.1.
Accepts decimal 0..=4294967295 and hex 0x0..=0xFFFFFFFF.
§Errors
XmlError::ValueOutOfRange on a value range violation.