diff options
Diffstat (limited to 'third_party/rust/clap/src/parse/matches/mod.rs')
-rw-r--r-- | third_party/rust/clap/src/parse/matches/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/clap/src/parse/matches/mod.rs b/third_party/rust/clap/src/parse/matches/mod.rs new file mode 100644 index 0000000000..7efa8b414f --- /dev/null +++ b/third_party/rust/clap/src/parse/matches/mod.rs @@ -0,0 +1,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; |