clap/tests
Sean Allred 05cd057978
perf: Avoid retrieving possible_values unless used
In some sophisticated situations, these may be expensive to calculate.
One example might be a '--branch' option accepting any single Git
branch that exists on the remote -- in such a case, the remote would
need to be queried for all possible_values. The cost is ultimately
unavoidable at runtime since this validation has to happen eventually,
but there's no need to pay it when generating help text if
`is_hide_possible_values_set`.

To keep '-h' fast, avoid collecting `possible_values` during '-h'
unless we're actually going to use the values in display.

This optimization is repeated for the manpage renderer.

This is trivially based on the short-circuiting logic at [1], which at
least supports the idea that actually consuming the iterator is not
generally-guaranteed behavior when `hide_possible_values` is set.

Note on the 'expensive' mod: This keeps all the possible_values tests
in one file but allows the entire set of tests to be controlled by the
'strings' feature (which is required to be able to use String rather
than str for each possible value).

[1]: clap_builder/src/builder/command.rs:long_help_exists_
2023-12-28 10:06:35 -06:00
..
builder perf: Avoid retrieving possible_values unless used 2023-12-28 10:06:35 -06:00
derive style: Make clippy happy 2023-10-12 08:32:59 -05:00
derive_ui chore: Inline simple non-mixed format args 2023-05-04 15:58:04 -04:00
ui fix(help): Don't use next-line-help on long-help for subcommands 2023-05-12 10:41:05 +02:00
derive_ui.rs chore: Update MSRV to 1.70 2023-08-24 10:14:23 -05:00
examples.rs feat(help): Stabilize styling support 2023-08-28 09:49:48 -05:00
macros.rs feat(help): 'usage' feature flag for auto-genned usage 2022-09-19 13:15:47 -05:00
ui.rs feat(help): Stabilize styling support 2023-08-28 09:49:48 -05:00