Searched refs:long_about (Results 1 – 25 of 27) sorted by relevance
12
/third_party/rust/crates/clap/examples/tutorial_derive/ |
D | 03_03_positional_mult.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_05_default_values.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_03_positional.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_01_flag_bool.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_02_option_mult.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_02_option.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 04_02_parse.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_01_flag_count.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 05_01_assert.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 02_crate.rs | 4 #[command(author, version, about, long_about = None)] // Read from `Cargo.toml`
|
D | 02_app_settings.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 02_apps.rs | 7 #[command(about = "Does awesome things", long_about = None)]
|
D | 03_04_subcommands.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 04_01_enum.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 03_04_subcommands_alt.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 04_02_validate.rs | 6 #[command(author, version, about, long_about = None)]
|
D | 01_quick.rs | 6 #[command(author, version, about, long_about = None)]
|
D | 04_03_relations.rs | 4 #[command(author, version, about, long_about = None)]
|
D | 04_04_custom.rs | 5 #[command(author, version, about, long_about = None)]
|
/third_party/rust/crates/clap/examples/ |
D | demo.rs | 5 #[command(author, version, about, long_about = None)]
|
D | cargo-example-derive.rs | 11 #[command(author, version, about, long_about = None)]
|
D | escaped-positional-derive.rs | 4 #[command(author, version, about, long_about = None)]
|
D | git-derive.rs | 10 #[command(about = "A fictional versioning CLI", long_about = None)]
|
/third_party/rust/crates/clap/clap_mangen/examples/ |
D | man.rs | 12 .long_about( in main()
|
/third_party/rust/crates/clap/src/builder/ |
D | command.rs | 81 long_about: Option<StyledStr>, field 1519 pub fn long_about(mut self, long_about: impl IntoResettable<StyledStr>) -> Self { in long_about() method 1520 self.long_about = long_about.into_resettable().into_option(); in long_about() 3289 self.long_about.as_ref() in get_long_about() 4637 long_about: Default::default(), in default()
|
12