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