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