pub type SVMResult<T> = Result<T, SVMError>;
Result type for SVM operations
pub enum SVMResult<T> { Ok(T), Err(SVMError), }
Contains the success value
Contains the error value