pub type ApexResult<T> = Result<T, ApexError>;
Main result type used throughout the apex-solver library
pub enum ApexResult<T> { Ok(T), Err(ApexError), }
Contains the success value
Contains the error value