ooroo 0.3.0

A fast, compiled rule engine with a text-based DSL
Documentation
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>,
}