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