@@ -21,9 +21,21 @@ impl<'b, 'a> Cmd<'a> {
21
21
/// An option configuration has fields: `store_key`, `names`, `has_arg`, `is_array`,
22
22
/// `defaults`, `desc`, `arg_in_help`, and `validator`.
23
23
///
24
+ /// When an option matches one of the `names` in the option configurations, the option is
25
+ /// registered into [Cmd] with `store_key`.
26
+ /// If both `has_arg` and `is_array` is false, the optioin can have only one option argument,
27
+ /// otherwise the option cannot have option arguments.
28
+ /// If `defaults` field is specified and no option value is given in command line arguments,
29
+ /// the value of `defaults` is set as the option arguments.
30
+ ///
31
+ /// If options not declared in option configurations are given in command line arguments, this
32
+ /// method basicaly returns [UnconfiguredOption] error.
33
+ /// However, if you want to allow other ooptions, add an option configuration of which
34
+ /// `store_key` or the first element of `names` is "*".
35
+ ///
24
36
/// The ownership of the vector of option configurations which is passed as an argument of
25
- /// this method is moved to this method and set to the public field `cfgs` of [Cmd] instance.
26
- /// If you want to access the option configurations after parsing, get them from this field .
37
+ /// this method is moved to this method and set into this [Cmd] instance.
38
+ /// It can be retrieved with its method: [Cmd::opt_cfgs] .
27
39
///
28
40
/// ```
29
41
/// use cliargs::{Cmd, OptCfg};
@@ -74,6 +86,10 @@ impl<'b, 'a> Cmd<'a> {
74
86
/// This method parses command line arguments in the same way as the [Cmd::parse_with] method,
75
87
/// except that it only parses the command line arguments before the first command argument.
76
88
///
89
+ /// The ownership of the vector of option configurations which is passed as an argument of
90
+ /// this method is moved to this method and set into this [Cmd] instance.
91
+ /// It can be retrieved with its method: [Cmd::opt_cfgs].
92
+ ///
77
93
/// ```
78
94
/// use cliargs::{Cmd, OptCfg};
79
95
/// use cliargs::OptCfgParam::{names, has_arg, defaults, validator, desc, arg_in_help};
0 commit comments