pub type ObjResult<T> = IOResult<T, ObjError>;
Result type for .obj file operations
pub enum ObjResult<T> { Ok(T), Err(WithLineInfo<ObjError>), }
Contains the success value
Contains the error value