logo
#[non_exhaustive]
pub enum ArgSettings {
Show 22 variants Required, MultipleValues, MultipleOccurrences, ForbidEmptyValues, Global, Hidden, TakesValue, UseValueDelimiter, NextLineHelp, RequireDelimiter, HidePossibleValues, AllowHyphenValues, RequireEquals, Last, HideDefaultValue, IgnoreCase, HideEnv, HideEnvValues, HiddenShortHelp, HiddenLongHelp, AllowInvalidUtf8, Exclusive, // some variants omitted
}
Expand description

Various settings that apply to arguments and may be set, unset, and checked via getter/setter methods Arg::setting, Arg::unset_setting, and Arg::is_set. This is what the Arg methods which accept a bool use internally.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Required

Deprecated, replaced with Arg::required and Arg::is_required_set

MultipleValues

Deprecated, replaced with Arg::multiple_values and Arg::is_multiple_values_set

MultipleOccurrences

Deprecated, replaced with Arg::action (Issue #3772)

ForbidEmptyValues

Deprecated, replaced with [Arg::value_parser(NonEmptyStringValueParser::new())]

Global

Deprecated, replaced with Arg::global and Arg::is_global_set

Hidden

Deprecated, replaced with Arg::hide and Arg::is_hide_set

TakesValue

Deprecated, replaced with Arg::takes_value and Arg::is_takes_value_set

UseValueDelimiter

NextLineHelp

Deprecated, replaced with Arg::next_line_help and Arg::is_next_line_help_set

RequireDelimiter

HidePossibleValues

AllowHyphenValues

RequireEquals

Deprecated, replaced with Arg::require_equals and Arg::is_require_equals_set

Last

Deprecated, replaced with Arg::last and Arg::is_last_set

HideDefaultValue

IgnoreCase

Deprecated, replaced with Arg::ignore_case and Arg::is_ignore_case_set

HideEnv

Available on crate feature env only.

Deprecated, replaced with Arg::hide_env and Arg::is_hide_env_set

HideEnvValues

Available on crate feature env only.

Deprecated, replaced with Arg::hide_env_values and Arg::is_hide_env_values_set

HiddenShortHelp

Deprecated, replaced with Arg::hide_short_help and Arg::is_hide_short_help_set

HiddenLongHelp

Deprecated, replaced with Arg::hide_long_help and Arg::is_hide_long_help_set

AllowInvalidUtf8

Exclusive

Deprecated, replaced with Arg::exclusive and Arg::is_exclusive_set

Trait Implementations

The resulting type after applying the | operator.

Performs the | operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deprecated in Issue #3087, maybe clap::Parser would fit your use case?

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.