summaryrefslogtreecommitdiffstats
path: root/third_party/rust/clap/src/parse/matches/mod.rs
blob: 7efa8b414f3063e318c9f5765fb7375603c7b524 (plain)
1
2
3
4
5
6
7
8
9
mod arg_matches;
mod matched_arg;
mod value_source;

pub use arg_matches::{ArgMatches, Indices, OsValues, Values};
pub use value_source::ValueSource;

pub(crate) use arg_matches::SubCommand;
pub(crate) use matched_arg::MatchedArg;