1//! [`Command`][crate::Command] line argument parser
2
3mod arg_matcher;
4mod error;
5mod matches;
6#[allow(clippy::module_inception)]
7mod parser;
8mod validator;
9
10pub(crate) mod features;
11
12pub(crate) use self::arg_matcher::ArgMatcher;
13pub(crate) use self::matches::{MatchedArg, SubCommand};
14pub(crate) use self::parser::Identifier;
15pub(crate) use self::parser::PendingArg;
16pub(crate) use self::parser::{ParseState, Parser};
17pub(crate) use self::validator::get_possible_values_cli;
18pub(crate) use self::validator::Validator;
19
20pub use self::matches::IdsRef;
21pub use self::matches::RawValues;
22pub use self::matches::Values;
23pub use self::matches::ValuesRef;
24pub use self::matches::{ArgMatches, Indices, ValueSource};
25pub use error::MatchesError;
26