pub fn parse_xml_string(xml: &str) -> Result<Vec<XmlNodeChild>, XmlError>Expand description
Parses the XML string into an XML tree, returns
the root <app></app> node, with the children attached to it.
Since the XML allows multiple root nodes, this function returns
a Vec<XmlNode> - which are the “root” nodes, containing all their
children recursively.
§Errors
Returns an XmlError if the XML cannot be parsed.