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