pub type ParseResult<T = Arc<String>> = Result<ParseData<T>, String>;
Helps specifying the type of the parsing result.
pub enum ParseResult<T = Arc<String>> { Ok(Vec<Expr<T>>), Err(String), }
Contains the success value
Contains the error value