pub type XmlResult<T> = Result<T, XmlError>;
Specialized Result which the error value is Error.
Result
Error
pub enum XmlResult<T> { Ok(T), Err(XmlError), }
Contains the success value
Contains the error value