pub type FromXmlResult<T> = Result<T, Error>;
Convenience redefinition of the FromXml result type.
pub enum FromXmlResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value