the key associated with the struct
a callback that performs the unarchiving of the individual fields
struct Foo { int a; } auto archive = new XmlArchive!(); archive.beginUnarchiving(data); archive.unarchiveStruct("foo", { // unarchive the fields of Foo });
Unarchives the struct associated with the given key.