1 2 3 4 5 6 7
use crate::variant::Variant; pub struct Rule { pub attributes: &'static [&'static str], pub children: &'static [&'static str], pub variants: &'static [Variant], }