[go: up one dir, main page]

clap 3.0.0-rc.3

A simple to use, efficient, and full-featured Command Line Argument Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod errors;
pub mod features;

mod arg_matcher;
pub mod matches;
mod parser;
mod validator;

pub(crate) use self::{
    arg_matcher::ArgMatcher,
    matches::{MatchedArg, SubCommand, ValueType},
    parser::{Input, ParseState, Parser},
    validator::Validator,
};

pub use self::matches::{ArgMatches, Indices, OsValues, Values};