pub fn try_from_element<T: FromXml>( from: Element, ) -> Result<T, FromElementError>
Attempt to convert a [minidom::Element] into a type implementing FromXml, fallably.
minidom::Element
FromXml
Unlike transform (which can also be used with an element), this function will return the element unharmed if its element header does not match the expectations of T.
transform
T