cmdparse 0.1.1

Parsing user's commands into arbitrary Rust types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! [`Parser`](super::Parser) implementations for common types defined as part of `cmdparse`
//!
//! Each parser in this module is designed to be as generic as is reasonable in order to allow the
//! crate's users to implement their own parser implementations on top of these built-in types.

mod paths;
mod primitives;
mod sequences;

pub use paths::*;
pub use primitives::*;
pub use sequences::*;