2021-12-01 20:31:06 +00:00
# Derive Reference
1. [Overview ](#overview )
2022-03-02 04:06:12 +00:00
2. [Attributes ](#attributes )
1. [Terminology ](#terminology )
2. [Command Attributes ](#command-attributes )
3. [Arg Attributes ](#arg-attributes )
2021-12-01 20:31:06 +00:00
4. [Arg Enum Attributes ](#arg-enum-attributes )
5. [Possible Value Attributes ](#possible-value-attributes )
2022-03-02 04:06:12 +00:00
3. [Arg Types ](#arg-types )
4. [Doc Comments ](#doc-comments )
5. [Tips ](#tips )
2021-12-01 20:31:06 +00:00
## Overview
To derive `clap` types, you need to enable the `derive` feature flag.
See [demo.rs ](../demo.rs ) and [demo.md ](../demo.md ) for a brief example.
2022-02-22 14:31:02 +00:00
Let's start by breaking down the anatomy of the derive attributes:
2021-12-01 20:31:06 +00:00
```rust
use clap::{Parser, Args, Subcommand, ArgEnum};
/// Doc comment
#[derive(Parser)]
#[clap(APP ATTRIBUTE)]
struct Cli {
/// Doc comment
#[clap(ARG ATTRIBUTE)]
field: Type,
#[clap(flatten)]
delegate: Struct,
#[clap(subcommand)]
command: Command,
}
/// Doc comment
#[derive(Args)]
#[clap(PARENT APP ATTRIBUTE)]
struct Struct {
/// Doc comment
#[clap(ARG ATTRIBUTE)]
field: Type,
}
/// Doc comment
#[derive(Subcommand)]
#[clap(PARENT APP ATTRIBUTE)]
enum Command {
/// Doc comment
#[clap(APP ATTRIBUTE)]
Variant1(Struct),
/// Doc comment
#[clap(APP ATTRIBUTE)]
Variant2 {
/// Doc comment
#[clap(ARG ATTRIBUTE)]
field: Type,
}
}
/// Doc comment
#[derive(ArgEnum)]
#[clap(ARG ENUM ATTRIBUTE)]
enum Mode {
/// Doc comment
#[clap(POSSIBLE VALUE ATTRIBUTE)]
Variant1,
}
fn main() {
let cli = Cli::parse();
}
```
- `Parser` parses arguments into a `struct` (arguments) or `enum` (subcommands).
- `Args` allows defining a set of re-usable arguments that get merged into their parent container.
2021-12-13 14:34:08 +00:00
- `Subcommand` defines available subcommands.
2022-02-22 14:32:18 +00:00
- Subcommand arguments can be defined in a struct-variant or automatically flattened with a tuple-variant.
2021-12-01 20:31:06 +00:00
- `ArgEnum` allows parsing a value directly into an `enum` , erroring on unsupported values.
2022-01-11 20:27:39 +00:00
See also the [tutorial ](../tutorial_derive/README.md ) and [examples ](../README.md ).
2022-03-02 04:06:12 +00:00
## Attributes
### Terminology
2021-12-01 20:31:06 +00:00
**Raw attributes** are forwarded directly to the underlying `clap` builder. Any
2022-02-12 03:48:29 +00:00
`Command` , `Arg` , or `PossibleValue` method can be used as an attribute.
2021-12-01 20:31:06 +00:00
Raw attributes come in two different syntaxes:
```rust
#[clap(
global = true, // name = arg form, neat for one-arg methods
required_if_eq("out", "file") // name(arg1, arg2, ...) form.
)]
```
- `method = arg` can only be used for methods which take only one argument.
- `method(arg1, arg2)` can be used with any method.
As long as `method_name` is not one of the magical methods - it will be
translated into a mere method call.
**Magic attributes** have post-processing done to them, whether that is
- Providing of defaults
- Special behavior is triggered off of it
2022-03-02 04:06:12 +00:00
Magic attributes are more constrained in the syntax they support, usually just
`<attr> = <value>` though some use `<attr>(<value>)` instead. See the specific
magic attributes documentation for details. This allows users to access the
raw behavior of an attribute via `<attr>(<value>)` syntax.
**NOTE:** Some attributes are inferred from [Arg Types ](#arg-types ) and [Doc
Comments](#doc-comments). Explicit attributes take precedence over inferred
attributes.
2022-02-12 03:48:29 +00:00
### Command Attributes
2021-12-01 20:31:06 +00:00
2022-02-12 03:48:29 +00:00
These correspond to a `clap::Command` which is used for both top-level parsers and
2021-12-01 20:31:06 +00:00
when defining subcommands.
2022-03-02 04:06:12 +00:00
**Magic attributes:**
2022-02-12 03:48:29 +00:00
- `name = <expr>` : `clap::Command::name`
2022-01-11 00:32:32 +00:00
- When not present: [crate `name` ](https://doc.rust-lang.org/cargo/reference/manifest.html#the-name-field ) (`Parser` container), variant name (`Subcommand` variant)
2022-02-12 03:48:29 +00:00
- `version [= <expr>]` : `clap::Command::version`
2021-12-01 20:31:06 +00:00
- When not present: no version set
2022-01-11 00:32:32 +00:00
- Without `<expr>` : defaults to [crate `version` ](https://doc.rust-lang.org/cargo/reference/manifest.html#the-version-field )
2022-02-12 03:48:29 +00:00
- `author [= <expr>]` : `clap::Command::author`
2021-12-01 20:31:06 +00:00
- When not present: no author set
2022-01-11 00:32:32 +00:00
- Without `<expr>` : defaults to [crate `authors` ](https://doc.rust-lang.org/cargo/reference/manifest.html#the-authors-field )
2022-02-12 03:48:29 +00:00
- `about [= <expr>]` : `clap::Command::about`
2022-01-10 13:25:54 +00:00
- When not present: [Doc comment summary ](#doc-comments )
2022-01-11 00:32:32 +00:00
- Without `<expr>` : [crate `description` ](https://doc.rust-lang.org/cargo/reference/manifest.html#the-description-field ) (`Parser` container)
2022-01-10 13:25:54 +00:00
- **TIP:** When a doc comment is also present, you most likely want to add
`#[clap(long_about = None)]` to clear the doc comment so only `about`
gets shown with both `-h` and `--help` .
2022-02-12 03:48:29 +00:00
- `long_about = <expr>` : `clap::Command::long_about`
2022-01-10 13:25:54 +00:00
- When not present: [Doc comment ](#doc-comments ) if there is a blank line, else nothing
2021-12-01 20:31:06 +00:00
- `verbatim_doc_comment` : Minimizes pre-processing when converting doc comments to `about` / `long_about`
2022-02-12 03:48:29 +00:00
- `next_display_order` : `clap::Command::next_display_order`
- `next_help_heading` : `clap::Command::next_help_heading`
2021-12-01 20:31:06 +00:00
- When `flatten` ing `Args` , this is scoped to just the args in this struct and any struct `flatten` ed into it
2022-02-12 03:48:29 +00:00
- `rename_all = <expr>` : Override default field / variant name case conversion for `Command::name` / `Arg::name`
2021-12-01 20:31:06 +00:00
- When not present: `kebab-case`
- Available values: `camelCase` , `kebab-case` , `PascalCase` , `SCREAMING_SNAKE_CASE` , `snake_case` , `lower` , `UPPER` , `verbatim`
- `rename_all_env = <expr>` : Override default field name case conversion for env variables for `clap::Arg::env`
- When not present: `SCREAMING_SNAKE_CASE`
- Available values: `camelCase` , `kebab-case` , `PascalCase` , `SCREAMING_SNAKE_CASE` , `snake_case` , `lower` , `UPPER` , `verbatim`
And for `Subcommand` variants:
- `skip` : Ignore this variant
2021-12-23 16:27:07 +00:00
- `flatten` : Delegates to the variant for more subcommands (must implement `Subcommand` )
- `subcommand` : Nest subcommands under the current set of subcommands (must implement `Subcommand` )
2022-02-12 03:48:29 +00:00
- `external_subcommand` : `clap::Command::allow_external_subcommand(true)`
2021-12-01 20:31:06 +00:00
- Variant must be either `Variant(Vec<String>)` or `Variant(Vec<OsString>)`
2022-03-02 04:06:12 +00:00
**Raw attributes:** Any [`Command` method ](https://docs.rs/clap/latest/clap/type.Command.html ) can also be used as an attribute, see [Terminology ](#terminology ) for syntax.
- e.g. `#[clap(arg_required_else_help(true))]` would translate to `cmd.arg_required_else_help(true)`
2021-12-01 20:31:06 +00:00
### Arg Attributes
These correspond to a `clap::Arg` .
2022-03-02 04:06:12 +00:00
**Magic attributes**:
2021-12-01 20:31:06 +00:00
- `name = <expr>` : `clap::Arg::new`
- When not present: case-converted field name is used
- `help = <expr>` : `clap::Arg::help`
2022-01-10 13:25:54 +00:00
- When not present: [Doc comment summary ](#doc-comments )
2021-12-01 20:31:06 +00:00
- `long_help = <expr>` : `clap::Arg::long_help`
2022-01-10 13:25:54 +00:00
- When not present: [Doc comment ](#doc-comments ) if there is a blank line, else nothing
2021-12-01 20:31:06 +00:00
- `verbatim_doc_comment` : Minimizes pre-processing when converting doc comments to `help` / `long_help`
- `short [= <char>]` : `clap::Arg::short`
- When not present: no short set
- Without `<char>` : defaults to first character in the case-converted field name
- `long [= <str>]` : `clap::Arg::long`
- When not present: no long set
- Without `<str>` : defaults to the case-converted field name
2022-03-05 14:25:12 +00:00
- `env [= <str>]` : `clap::Arg::env` (needs `env` feature enabled)
2021-12-01 20:31:06 +00:00
- When not present: no env set
- Without `<str>` : defaults to the case-converted field name
- `flatten` : Delegates to the field for more arguments (must implement `Args` )
2022-01-10 14:03:59 +00:00
- Only `help_heading` can be used with `flatten` . See
[clap-rs/clap#3269 ](https://github.com/clap-rs/clap/issues/3269 ) for why
arg attributes are not generally supported.
2022-02-12 03:48:29 +00:00
- **Tip:** Though we do apply a flattened `Args` 's Parent Command Attributes, this
2022-02-14 21:47:20 +00:00
makes reuse harder. Generally prefer putting the cmd attributes on the `Parser`
2022-01-10 14:03:59 +00:00
or on the flattened field.
2021-12-01 20:31:06 +00:00
- `subcommand` : Delegates definition of subcommands to the field (must implement `Subcommand` )
- When `Option<T>` , the subcommand becomes optional
2022-03-02 04:06:12 +00:00
- `from_global` : Read a `clap::Arg::global` argument (raw attribute), regardless of what subcommand you are in
2022-02-02 16:37:47 +00:00
- `parse(<kind> [= <function>])` : `clap::Arg::validator` and `clap::ArgMatches::values_of_t`
- Default: `try_from_str`
- Warning: for `Path` / `OsString` , be sure to use `try_from_os_str`
- See [Arg Types ](#arg-types ) for more details
2021-12-01 20:31:06 +00:00
- `arg_enum` : Parse the value using the `ArgEnum` trait
- `skip [= <expr>]` : Ignore this field, filling in with `<expr>`
- Without `<expr>` : fills the field with `Default::default()`
- `default_value = <str>` : `clap::Arg::default_value` and `clap::Arg::required(false)`
- `default_value_t [= <expr>]` : `clap::Arg::default_value` and `clap::Arg::required(false)`
2021-12-16 15:09:27 +00:00
- Requires `std::fmt::Display` or `#[clap(arg_enum)]`
2021-12-01 20:31:06 +00:00
- Without `<expr>` , relies on `Default::default()`
2022-01-24 21:32:21 +00:00
- `default_value_os_t [= <expr>]` : `clap::Arg::default_value_os` and `clap::Arg::required(false)`
- Requires `std::convert::Into<OsString>` or `#[clap(arg_enum)]`
- Without `<expr>` , relies on `Default::default()`
2021-12-01 20:31:06 +00:00
2022-03-02 04:06:12 +00:00
**Raw attributes:** Any [`Arg` method ](https://docs.rs/clap/latest/clap/struct.Arg.html ) can also be used as an attribute, see [Terminology ](#terminology ) for syntax.
- e.g. `#[clap(max_values(3))]` would translate to `arg.max_values(3)`
### Arg Enum Attributes
- `rename_all = <expr>` : Override default field / variant name case conversion for `PossibleValue::new`
- When not present: `kebab-case`
- Available values: `camelCase` , `kebab-case` , `PascalCase` , `SCREAMING_SNAKE_CASE` , `snake_case` , `lower` , `UPPER` , `verbatim`
### Possible Value Attributes
These correspond to a `clap::PossibleValue` .
**Magic attributes**:
- `name = <expr>` : `clap::PossibleValue::new`
- When not present: case-converted field name is used
- `help = <expr>` : `clap::PossibleValue::help`
- When not present: [Doc comment summary ](#doc-comments )
**Raw attributes:** Any [`PossibleValue` method ](https://docs.rs/clap/latest/clap/struct.PossibleValue.html ) can also be used as an attribute, see [Terminology ](#terminology ) for syntax.
- e.g. `#[clap(alias("foo"))]` would translate to `pv.alias("foo")`
## Arg Types
2021-12-01 20:31:06 +00:00
`clap` assumes some intent based on the type used:
| Type | Effect | Implies |
|---------------------|--------------------------------------|------------------------------------------------------------------|
2022-01-26 14:41:09 +00:00
| `bool` | flag | `#[clap(parse(from_flag))]` |
2021-12-01 20:31:06 +00:00
| `Option<T>` | optional argument | `.takes_value(true).required(false)` |
| `Option<Option<T>>` | optional value for optional argument | `.takes_value(true).required(false).min_values(0).max_values(1)` |
| `T` | required argument | `.takes_value(true).required(!has_default)` |
| `Vec<T>` | `0..` occurrences of argument | `.takes_value(true).required(false).multiple_occurrences(true)` |
| `Option<Vec<T>>` | `0..` occurrences of argument | `.takes_value(true).required(false).multiple_occurrences(true)` |
2021-12-07 21:06:39 +00:00
Notes:
2021-12-09 15:32:33 +00:00
- For custom type behavior, you can override the implied attributes/settings and/or set additional ones
2021-12-15 17:12:16 +00:00
- For example, see [custom-bool ](./custom-bool.md )
2021-12-07 21:06:39 +00:00
- `Option<Vec<T>>` will be `None` instead of `vec![]` if no arguments are provided.
- This gives the user some flexibility in designing their argument, like with `min_values(0)`
2021-12-01 20:31:06 +00:00
You can then support your custom type with `#[clap(parse(<kind> [= <function>]))]` :
| `<kind>` | Signature | Default `<function>` |
|--------------------------|---------------------------------------|---------------------------------|
| `from_str` | `fn(&str) -> T` | `::std::convert::From::from` |
| `try_from_str` (default) | `fn(&str) -> Result<T, E>` | `::std::str::FromStr::from_str` |
| `from_os_str` | `fn(&OsStr) -> T` | `::std::convert::From::from` |
| `try_from_os_str` | `fn(&OsStr) -> Result<T, OsString>` | (no default function) |
| `from_occurrences` | `fn(u64) -> T` | `value as T` |
| `from_flag` | `fn(bool) -> T` | `::std::convert::From::from` |
Notes:
- `from_os_str` :
- Implies `arg.takes_value(true).allow_invalid_utf8(true)`
- `try_from_os_str` :
- Implies `arg.takes_value(true).allow_invalid_utf8(true)`
- `from_occurrences` :
- Implies `arg.takes_value(false).multiple_occurrences(true)`
- Reads from `clap::ArgMatches::occurrences_of` rather than a `value_of` function
2022-01-20 15:55:13 +00:00
- Note: operations on values, like `default_value` , are unlikely to do what you want
2021-12-01 20:31:06 +00:00
- `from_flag`
- Implies `arg.takes_value(false)`
- Reads from `clap::ArgMatches::is_present` rather than a `value_of` function
2022-01-20 15:55:13 +00:00
- Note: operations on values, like `default_value` , are unlikely to do what you want
2021-12-01 20:31:06 +00:00
**Warning:**
- To support non-UTF8 paths, you must use `parse(from_os_str)` , otherwise
`clap` will use `clap::ArgMatches::value_of` with `PathBuf::FromStr` .
2022-03-02 04:06:12 +00:00
## Doc Comments
2021-12-01 20:31:06 +00:00
In clap, help messages for the whole binary can be specified
2022-02-12 03:48:29 +00:00
via [`Command::about`] and [`Command::long_about`] while help messages
2021-12-01 20:31:06 +00:00
for individual arguments can be specified via [`Arg::help`] and [`Arg::long_help`]".
`long_*` variants are used when user calls the program with
`--help` and "short" variants are used with `-h` flag.
```rust
# use clap::Parser;
#[derive(Parser)]
2022-01-11 00:47:20 +00:00
#[clap(about = "I am a program and I work, just pass `-h`", long_about = None)]
2021-12-01 20:31:06 +00:00
struct Foo {
#[clap(short, help = "Pass `-h` and you'll see me!")]
bar: String,
}
```
For convenience, doc comments can be used instead of raw methods
(this example works exactly like the one above):
```rust
# use clap::Parser;
#[derive(Parser)]
/// I am a program and I work, just pass `-h`
struct Foo {
/// Pass `-h` and you'll see me!
bar: String,
}
```
2022-01-10 13:25:54 +00:00
**NOTE:** Attributes have priority over doc comments!
2021-12-01 20:31:06 +00:00
2022-02-12 03:48:29 +00:00
**Top level doc comments always generate `Command::about/long_about` calls!**
If you really want to use the `Command::about/long_about` methods (you likely don't),
2022-01-10 13:25:54 +00:00
use the `about` / `long_about` attributes to override the calls generated from
the doc comment. To clear `long_about` , you can use
`#[clap(long_about = None)]` .
2021-12-01 20:31:06 +00:00
2021-12-08 03:22:12 +00:00
**TIP:** Set `#![deny(missing_docs)]` to catch missing `--help` documentation at compile time.
2022-03-02 04:06:12 +00:00
### Pre-processing
2021-12-01 20:31:06 +00:00
```rust
# use clap::Parser;
#[derive(Parser)]
/// Hi there, I'm Robo!
///
/// I like beeping, stumbling, eating your electricity,
/// and making records of you singing in a shower.
/// Pay up, or I'll upload it to youtube!
struct Robo {
/// Call my brother SkyNet.
///
/// I am artificial superintelligence. I won't rest
/// until I'll have destroyed humanity. Enjoy your
/// pathetic existence, you mere mortals.
#[clap(long)]
kill_all_humans: bool,
}
```
A doc comment consists of three parts:
- Short summary
- A blank line (whitespace only)
- Detailed description, all the rest
2022-02-12 03:48:29 +00:00
The summary corresponds with `Command::about` / `Arg::help` . When a blank line is
present, the whole doc comment will be passed to `Command::long_about` /
`Arg::long_help` . Or in other words, a doc may result in just a `Command::about` /
`Arg::help` or `Command::about` / `Arg::help` and `Command::long_about` /
2021-12-01 20:31:06 +00:00
`Arg::long_help`
In addition, when `verbatim_doc_comment` is not present, `clap` applies some preprocessing, including:
- Strip leading and trailing whitespace from every line, if present.
- Strip leading and trailing blank lines, if present.
- Interpret each group of non-empty lines as a word-wrapped paragraph.
We replace newlines within paragraphs with spaces to allow the output
to be re-wrapped to the terminal width.
- Strip any excess blank lines so that there is exactly one per paragraph break.
- If the first paragraph ends in exactly one period,
remove the trailing period (i.e. strip trailing periods but not trailing ellipses).
Sometimes you don't want this preprocessing to apply, for example the comment contains
some ASCII art or markdown tables, you would need to preserve LFs along with
blank lines and the leading/trailing whitespace. When you pass use the
`verbatim_doc_comment` magic attribute, you preserve
them.
**Note:** Keep in mind that `verbatim_doc_comment` will *still*
- Remove one leading space from each line, even if this attribute is present,
to allow for a space between `///` and the content.
- Remove leading and trailing blank lines
2022-02-23 00:09:47 +00:00
## Tips
- To get access to a `Command` call `CommandFactory::command` (implemented when deriving `Parser` )
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](../tutorial_derive/05_01_assert.rs))