Print one tool's description, usage line, and parameter table.
(def: &ToolDefinition)
| 468 | |
| 469 | /// Print one tool's description, usage line, and parameter table. |
| 470 | fn print_tool_help(def: &ToolDefinition) { |
| 471 | print!("{}", render_tool_cli_help(def)); |
| 472 | } |
| 473 | |
| 474 | #[cfg(test)] |
| 475 | #[allow(clippy::unwrap_used, clippy::expect_used)] |