Crate xmlJSON

Source
Expand description

Structs for conversions from XML to JSON

§Example

use xmlJSON::XmlDocument;
use std::str::FromStr;
 
let test = "<note type=\"Reminder\">
                test
            </note>";
let data = XmlDocument::from_str(test);

Structs§