Module argparse::argparser
[−]
[src]
This module defines and contains all the important argument parsing functionality. The requisite types and functions are re-exported at the top-level of the crate.
Structs
| ArgParseResults |
This type represents the result ofparsing arguments. |
| ArgParser |
This type represents the state and methods for parsing arguments. A new parser must be created for every set of arguments you want to parse. |
Enums
| ArgType |
This enum represents the different types of arguments supported |
Traits
| ArgGetter |
Represents something capable of turning a |
Functions
| hashmap_parser |
Function that parses PanicsPanics if improper or no separator is found (expects |
| vec_parser |
Function that parses |
Type Definitions
| ParseResult |
Simple type alias to reduce typing. The return type of
|