the id associated with the struct
a callback that performs the unarchiving of the individual fields. The callback will receive the key the struct was archived with.
struct Foo { int a; } auto archive = new XmlArchive!(); archive.beginUnarchiving(data); archive.unarchiveStruct(0, { // unarchive the fields of Foo });
Unarchives the struct associated with the given id.