Trait xso::FromXml

source ·
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§

source

fn from_tree(tree: Element) -> Result<Self, Error>

Convert an XML subtree into a struct or fail with an error.

source

fn absent() -> Option<Self>

Provide an optional default if the element is absent.

This is used to automatically make Option<T> default to None.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: FromXml> FromXml for Option<T>

source§

fn from_tree(tree: Element) -> Result<Self, Error>

source§

fn absent() -> Option<Self>

Implementors§