Home
last modified time | relevance | path

Searched refs:next_help_heading (Results 1 - 7 of 7) sorted by relevance

/third_party/rust/crates/clap/tests/derive/
H A Dhelp.rs33 #[command(next_help_heading = "DEFAULT")] in app_help_heading_applied()
82 #[command(next_help_heading = "HEADING A")] in app_help_heading_flattened()
89 #[command(next_help_heading = "HEADING B")] in app_help_heading_flattened()
102 #[command(next_help_heading = "SUB A")] in app_help_heading_flattened()
110 #[command(next_help_heading = "SUB B")] in app_help_heading_flattened()
116 #[command(next_help_heading = "SUB C")] in app_help_heading_flattened()
171 #[command(next_help_heading = "HEADING A")] in flatten_field_with_help_heading()
/third_party/rust/crates/clap/examples/
H A Dfind.rs14 .next_help_heading("TESTS") in cli()
20 .next_help_heading("OPERATORS") in cli()
/third_party/rust/crates/clap/clap_derive/src/derives/
H A Dsubcommand.rs176 let next_help_heading = item.next_help_heading(); in gen_augment()
182 #next_help_heading in gen_augment()
190 #next_help_heading in gen_augment()
H A Dargs.rs221 let next_help_heading = item.next_help_heading(); in gen_augment()
226 #next_help_heading in gen_augment()
233 #next_help_heading in gen_augment()
/third_party/rust/crates/clap/tests/builder/
H A Dhelp.rs1630 .next_help_heading(Some("NETWORKING")) in custom_headers_headers()
1679 .next_help_heading(Some("NETWORKING")) in multiple_custom_help_headers()
1687 .next_help_heading(Some("SPECIAL")) in multiple_custom_help_headers()
1700 .next_help_heading(None) in multiple_custom_help_headers()
1744 .next_help_heading(Some("NETWORKING")) in custom_help_headers_hide_args()
1752 .next_help_heading(Some("SPECIAL")) in custom_help_headers_hide_args()
1764 .next_help_heading(None) in custom_help_headers_hide_args()
2271 .next_help_heading(Some("NETWORKING")) in custom_heading_pos()
2291 .next_help_heading(Some("NETWORKING")) in only_custom_heading_opts_no_args()
2311 .next_help_heading(Som in only_custom_heading_pos_no_args()
[all...]
/third_party/rust/crates/clap/clap_derive/src/
H A Ditem.rs47 next_help_heading: Option<Method>,
271 next_help_heading: None, in new()
813 self.next_help_heading = Some(Method::new(attr.name.clone(), quote!(#expr))); in push_attrs()
950 let next_help_heading = self.next_help_heading.as_ref().into_iter(); in initial_top_level_methods()
953 #(#next_help_heading)* in initial_top_level_methods()
981 pub fn next_help_heading(&self) -> TokenStream { in next_help_heading() functions
982 let next_help_heading = self.next_help_heading.as_ref().into_iter(); in next_help_heading()
983 quote!( #(#next_help_heading)* ) in next_help_heading()
[all...]
/third_party/rust/crates/clap/src/builder/
H A Dcommand.rs1856 pub fn next_help_heading(mut self, heading: impl IntoResettable<Str>) -> Self { in next_help_heading() functions
3292 /// Get the custom section heading specified via [`Command::next_help_heading`].
4251 // Avoiding `arg_internal` to not be sensitive to `next_help_heading` /
4262 // Avoiding `arg_internal` to not be sensitive to `next_help_heading` /

Completed in 11 milliseconds