pub fn minimal_multi_select<T: Display>(
opts: Vec<T>,
) -> Result<Option<Vec<T>>, InquireError>Expand description
Provides a minimal interactive multi-select prompt, returning Option::None if no options are provided, the user
cancels, or no items are selected.
Wraps [inquire::MultiSelect] with a slim rendering (see minimal_render_config) and no help message.
§Type Parameters
TThe type of the options, constrained to implementDisplay.
§Errors
- [
InquireError]: Propagated from [inquire] for failures in prompt rendering or user interaction, excluding cancellation which is handled asNone.