/third_party/rust/crates/clap/examples/tutorial_derive/ |
H A D | 03_05_default_values.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 04_02_parse.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_02_option_mult.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_03_positional_mult.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_03_positional.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_01_flag_count.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_02_option.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_01_flag_bool.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 05_01_assert.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 04_01_enum.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 03_04_subcommands.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 02_app_settings.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 02_apps.rs | 7 #[command(about = "Does awesome things", long_about = None)]
|
H A D | 02_crate.rs | 4 #[command(author, version, about, long_about = None)] // Read from `Cargo.toml`
|
H A D | 04_02_validate.rs | 6 #[command(author, version, about, long_about = None)]
|
H A D | 03_04_subcommands_alt.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 01_quick.rs | 6 #[command(author, version, about, long_about = None)]
|
H A D | 04_03_relations.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | 04_04_custom.rs | 5 #[command(author, version, about, long_about = None)]
|
/third_party/rust/crates/clap/examples/ |
H A D | cargo-example-derive.rs | 11 #[command(author, version, about, long_about = None)]
|
H A D | demo.rs | 5 #[command(author, version, about, long_about = None)]
|
H A D | escaped-positional-derive.rs | 4 #[command(author, version, about, long_about = None)]
|
H A D | git-derive.rs | 10 #[command(about = "A fictional versioning CLI", long_about = None)]
|
/third_party/rust/crates/clap/clap_mangen/examples/ |
H A D | man.rs | 12 .long_about( in main()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | command.rs | 81 long_about: Option<StyledStr>, 1478 /// If [`Command::long_about`] is not specified, this message will be displayed for `--help`. 1511 /// .long_about( 1519 pub fn long_about(mut self, long_about: impl IntoResettable<StyledStr>) -> Self { in long_about() functions 1520 self.long_about = long_about.into_resettable().into_option(); in long_about() 1753 /// [`Command::long_about`]). 1795 /// [`Command::long_about`]: Command::long_about() [all...] |