Expand description
A simple library for parsing an XML file into an in-memory tree structure
Not recommended for large XML files, as it will load the entire file into memory.
Example
use xmltree::Element;
use std::fs::File;
let data: &'static str = r##"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<names>
<name first="bob" last="jones" />
<name first="elizabeth" last="smith" />
</names>
"##;
let mut names_element = Element::parse(data.as_bytes()).unwrap();
println!("{:#?}", names_element);
{
// get first `name` element
let name = names_element.get_mut_child("name").expect("Can't find name element");
name.attributes.insert("suffix".to_owned(), "mr".to_owned());
}
names_element.write(File::create("result.xml").unwrap());
Structs
Enums
Errors that can occur parsing XML