syntax_parser_generator/handles/specials/
mod.rs

1//! Traits for [Handled](super::Handled) types with special properties.
2
3pub use automatically_handled::AutomaticallyHandled;
4pub use orderly_handled::OrderlyHandled;
5
6mod automatically_handled;
7mod orderly_handled;