pub type Res<R> = TeXResult<R, Types>;
pub enum Res<R> { Ok(R), Err(TeXError<Types>), }
Contains the success value
Contains the error value