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