[][src]Crate argue

Structs

ArgParser

Contains all the data and arguments of the project

ArgParserBuilder

Struct used to create a ArgParser with the builder pattern

Argument

The representation of an Argument passed to the argument parser

ReceivedArgument

Received argument

Enums

ArgumentType

Defines the type of argument passed, a Single argument can be "--help", a paired one is "-j 5", and an equaled would be "--name=joshep". The bool inside tells if the argument is mandatory, in case its not provided It will print the usage and the missing argument

Functions

app

Like the ArgParserBuilder::new but more accesible