1 2 3 4 5 6 7 8
use crate::{Rule, Terminal}; /// The result of parsing a DSL input string. #[derive(Debug)] pub struct ParsedRuleSet { pub rules: Vec<Rule>, pub terminals: Vec<Terminal>, }