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