pub type BlasResult<T> = Result<T, Problem>;
Result type used by fallible operations in this crate.
pub enum BlasResult<T> { Ok(T), Err(Problem), }
Contains the success value
Contains the error value