Enum argparse::argparser::ArgType
[−]
[src]
pub enum ArgType {
Option,
Flag,
List,
Dict,
Positional(u8),
}This enum represents the different types of arguments supported
Variants
Option | An argument that takes a value, as in |
Flag | An argument that is a simple flag, as in |
List | Like an |
Dict | Like a |
Positional | A positional argument, as in |