pub type Result<T, E = EmitterError> = Result<T, E>;
A result type yielded by XmlWriter.
XmlWriter
enum Result<T, E = EmitterError> { Ok(T), Err(E), }
Contains the success value
Contains the error value