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