Searched refs:write_help (Results 1 – 7 of 7) sorted by relevance
/third_party/rust/crates/clap/src/output/ |
D | help.rs | 9 pub(crate) fn write_help(writer: &mut StyledStr, cmd: &Command, usage: &Usage<'_>, use_long: bool) { in write_help() function 29 AutoHelp::new(writer, cmd, usage, use_long).write_help(); in write_help()
|
D | mod.rs | 10 pub(crate) use self::help::write_help;
|
D | help_template.rs | 37 pub(crate) fn write_help(&mut self) { in write_help() method
|
/third_party/rust/crates/clap/src/builder/ |
D | command.rs | 24 use crate::output::{fmt::Colorizer, write_help, Usage}; 729 write_help(&mut styled, self, &usage, false); in print_help() 756 write_help(&mut styled, self, &usage, true); in print_long_help() 784 write_help(&mut styled, self, &usage, false); in render_help() 810 write_help(&mut styled, self, &usage, true); in render_long_help() 819 pub fn write_help<W: io::Write>(&mut self, w: &mut W) -> io::Result<()> { in write_help() method 824 write_help(&mut styled, self, &usage, false); in write_help() 839 write_help(&mut styled, self, &usage, true); in write_long_help() 4572 write_help(&mut styled, self, &usage, use_long); in write_help_err()
|
/third_party/rust/crates/clap/tests/ |
D | macros.rs | 303 cmd.write_help(&mut help).unwrap(); in optional_value()
|
/third_party/f2fs-tools/tools/f2fs_io/ |
D | f2fs_io.c | 502 #define write_help \ macro
|
/third_party/rust/crates/clap/ |
D | CHANGELOG.md | 541 - *(help)* Deprecated `Command::write_help` and `Command::write_long_help` in favor of `Command::re… 851 - Help subcommand and `Command::write_help` now report required arguments in usage in more circumst… 1282 - Some `App` functions, like `App::write_help` now take `&mut self` instead of `&self` 1287 - Changed `App::write_help` & `App::write_long_help` to now return `std::io::Result`
|