pub trait FromXml: Sized {
// Required methods
fn from_tree(tree: Element) -> Result<Self, Error>;
fn absent() -> Option<Self>;
}
Expand description
Provide construction of structs from XML (sub-)trees.
This trait is what is really implemented by the FromXml
derive
macro.
Required Methods§
Object Safety§
This trait is not object safe.