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