Is there any parser generator for Rust that lets you express your grammar with a PEG (like pest), but also lets you use syntax directed definition rules to build your AST (like LALRPOP)?
I have done a little bit of research and found the following options: peg and pest_consume. I will try one of them (probably peg).