summaryrefslogtreecommitdiffstats
path: root/vendor/clap_builder/src/parser/matches/mod.rs
blob: eb865853cab75570c457f1cf00b513b9e2d9ea8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod arg_matches;
mod matched_arg;
mod value_source;

pub use arg_matches::IdsRef;
pub use arg_matches::RawValues;
pub use arg_matches::Values;
pub use arg_matches::ValuesRef;
pub use arg_matches::{ArgMatches, Indices};
pub use value_source::ValueSource;

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