Function xso::try_from_element
source ยท pub fn try_from_element<T: FromXml>(from: Element) -> Result<T, Error>
Expand description
Attempt to convert a minidom::Element
into a type implementing
FromXml
, fallably.
Unlike transform
(which can also be used with an element), this
function will return the element unharmed as
crate::error::Error::TypeMismatch
variant.