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