pub type Result<T> = Result<T, XmlError>;
The result type for this module
enum Result<T> { Ok(T), Err(XmlError), }
Contains the success value
Contains the error value