cmdparse/parsers/
mod.rs

1//! [`Parser`](super::Parser) implementations for common types defined as part of `cmdparse`
2//!
3//! Each parser in this module is designed to be as generic as is reasonable in order to allow the
4//! crate's users to implement their own parser implementations on top of these built-in types.
5
6mod paths;
7mod primitives;
8mod sequences;
9
10pub use paths::*;
11pub use primitives::*;
12pub use sequences::*;