switch Element namespaces to NamespaceSet with parent reference

This commit is contained in:
Astro 2017-07-28 23:58:03 +02:00
commit a01cf553ae
3 changed files with 210 additions and 85 deletions

View file

@ -26,5 +26,10 @@ error_chain! {
description("The XML is invalid, an element was wrongly closed")
display("the XML is invalid, an element was wrongly closed")
}
/// An error which is returned when an elemet's name contains more than one colon
InvalidElement {
description("The XML element is invalid")
display("the XML element is invalid")
}
}
}