pub type Result<T> = Result<T, OxmlError>;
pub enum Result<T> { Ok(T), Err(OxmlError), }
Contains the success value
Contains the error value