1 2 3 4 5 6 7 8 9 10
pub mod token; pub mod serialize; #[cfg(test)] pub mod tests; use pest_derive::Parser; #[derive(Parser)] #[grammar = "rst.pest"] pub struct RstParser;