Xml Macro
A convenience macro for use with quick-xml, to save one from
its verbosity!
Example usage:
use xml;
use Cursor;
use Writer;
// Create the event
let event = xml!;
// Write said event
let mut writer = new;
writer.write_event.unwrap;
// Check it matches our expectations
assert_eq!
Alternatively the xmls! macro can be used to generate an array of xml
events.