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