Searched refs:next_line_help (Results 1 - 7 of 7) sorted by relevance
/third_party/rust/crates/clap/src/output/ |
H A D | help_template.rs | 78 next_line_help: bool, 110 let next_line_help = cmd.is_next_line_help_set(); 116 next_line_help, 452 let next_line_help = self.will_args_wrap(args, longest); in write_args() 457 if next_line_help && self.use_long { in write_args() 461 self.write_arg(arg, next_line_help, longest); in write_args() 466 fn write_arg(&mut self, arg: &Arg, next_line_help: bool, longest: usize) { in write_arg() 473 self.align_to_about(arg, next_line_help, longest); in write_arg() 485 self.help(Some(arg), about, spec_vals, next_line_help, longest); in write_arg() 511 fn align_to_about(&mut self, arg: &Arg, next_line_help [all...] |
/third_party/rust/crates/clap/examples/tutorial_builder/ |
H A D | 02_app_settings.rs | 5 .next_line_help(true) in main()
|
/third_party/rust/crates/clap/examples/tutorial_derive/ |
H A D | 02_app_settings.rs | 5 #[command(next_line_help = true)]
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | non_literal_attributes.rs | 28 next_line_help = true,
|
/third_party/rust/crates/cxx/gen/cmd/src/ |
H A D | app.rs | 38 .next_line_help(true) in app()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | arg.rs | 1176 /// **Pro Tip:** It may help to use [`Arg::next_line_help(true)`] if there are long, or 1214 /// [`Arg::next_line_help(true)`]: Arg::next_line_help() 2187 /// [`crate::Command::next_line_help`] 2199 /// .next_line_help(true) 2226 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() functions 3993 /// Report whether [`Arg::next_line_help`] is set
|
H A D | command.rs | 1171 /// .next_line_help(true) 1175 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() functions 3586 /// Report whether [`Command::next_line_help`] is set
|
Completed in 13 milliseconds