Struct ArgGroup
struct ArgGroup { ... }
Family of related arguments.
By placing arguments in a logical group, you can create easier requirement and exclusion rules instead of having to list each argument individually, or when you want a rule to apply "any but not all" arguments.
For instance, you can make an entire ArgGroup required. If ArgGroup::multiple(true) is
set, this means that at least one argument from that group must be present. If
ArgGroup::multiple(false) is set (the default), one and only one must be present.
You can also do things such as name an entire ArgGroup as a conflict or requirement for
another argument, meaning any of the arguments that belong to that group will cause a failure
if present, or must be present respectively.
Perhaps the most common use of ArgGroups is to require one and only one argument to be
present out of a given set. Imagine that you had multiple arguments, and you want one of them
to be required, but making all of them required isn't feasible because perhaps they conflict
with each other. For example, lets say that you were building an application where one could
set a given version number by supplying a string with an option argument, i.e.
--set-ver v1.2.3, you also wanted to support automatically using a previous version number
and simply incrementing one of the three numbers. So you create three flags --major,
--minor, and --patch. All of these arguments shouldn't be used at one time but you want to
specify that at least one of them is used. For this, you can create a group.
Finally, you may use ArgGroups to pull a value from a group of arguments when you don't care
exactly which argument was actually used at runtime.
Examples
The following example demonstrates using an ArgGroup to ensure that one, and only one, of
the arguments from the specified group is present at runtime.
# use clap_builder as clap;
# use ;
let result = new
.arg
.arg
.arg
.arg
.group
.try_get_matches_from;
// Because we used two args in the group it's an error
assert!;
let err = result.unwrap_err;
assert_eq!;
This next example shows a passing parse of the same scenario
# use clap_builder as clap;
# use ;
let result = new
.arg
.arg
.arg
.arg
.group
.try_get_matches_from;
assert!;
let matches = result.unwrap;
// We may not know which of the args was used, so we can test for the group...
assert!;
// We can also ask the group which arg was used
assert_eq!;
// we could also alternatively check each arg individually (not shown here)
Implementations
impl ArgGroup
fn new<impl Into<Id>: Into<Id>>(id: impl Into<Id>) -> SelfCreate a
ArgGroupusing a unique name.The name will be used to get values from the group or refer to the group inside of conflict and requirement rules.
Examples
# use clap_builder as clap; # use ; new # ;fn id<impl Into<Id>: Into<Id>>(self: Self, id: impl Into<Id>) -> SelfSets the group name.
Examples
# use clap_builder as clap; # use ; default.id # ;fn arg<impl IntoResettable<Id>: IntoResettable<Id>>(self: Self, arg_id: impl IntoResettable<Id>) -> SelfAdds an argument to this group by name
Examples
# use clap_builder as clap; # use ; let m = new .arg .arg .group .get_matches_from; // maybe we don't know which of the two flags was used... assert!; // but we can also check individually if needed assert!;fn args<impl Into<Id>: Into<Id>, impl IntoIterator<Item = impl Into<Id>>: IntoIterator<Item = impl Into<Id>>>(self: Self, ns: impl IntoIterator<Item = impl Into<Id>>) -> SelfAdds multiple arguments to this group by name
Examples
# use clap_builder as clap; # use ; let m = new .arg .arg .group .get_matches_from; // maybe we don't know which of the two flags was used... assert!; // but we can also check individually if needed assert!;fn get_args(self: &Self) -> impl Iterator<Item = &Id>Getters for all args. It will return a vector of
IdExample
# use clap_builder as clap; # use ; let args: = vec!; let grp = new.args; for in grp.get_args.enumeratefn multiple(self: Self, yes: bool) -> SelfAllows more than one of the
Args in this group to be used. (Default:false)Examples
Notice in this example we use both the
-fand-cflags which are both part of the group# use clap_builder as clap; # use ; let m = new .arg .arg .group .get_matches_from; // maybe we don't know which of the two flags was used... assert!;In this next example, we show the default behavior (i.e.
multiple(false)) which will throw an error if more than one of the args in the group was used.# use clap_builder as clap; # use ; let result = new .arg .arg .group .try_get_matches_from; // Because we used both args in the group it's an error assert!; let err = result.unwrap_err; assert_eq!;fn is_multiple(self: &mut Self) -> boolReturn true if the group allows more than one of the arguments in this group to be used. (Default:
false)Example
# use clap_builder as clap; # use ; let mut group = new .args .multiple; assert!;fn required(self: Self, yes: bool) -> SelfRequire an argument from the group to be present when parsing.
This is unless conflicting with another argument. A required group will be displayed in the usage string of the application in the format
<arg|arg2|arg3>.NOTE: This setting only applies to the current
Command/Subcommands, and not globally.NOTE: By default,
ArgGroup::multipleis set tofalsewhich when combined withArgGroup::required(true)states, "One and only one arg must be used from this group. Use of more than one arg is an error." Vice settingArgGroup::multiple(true)which states, 'At least one arg from this group must be used. Using multiple is OK."Examples
# use clap_builder as clap; # use ; let result = new .arg .arg .group .try_get_matches_from; // Because we didn't use any of the args in the group, it's an error assert!; let err = result.unwrap_err; assert_eq!;fn requires<impl IntoResettable<Id>: IntoResettable<Id>>(self: Self, id: impl IntoResettable<Id>) -> SelfSpecify an argument or group that must be present when this group is.
This is not to be confused with a required group. Requirement rules function just like argument requirement rules, you can name other arguments or groups that must be present when any one of the arguments from this group is used.
NOTE: The name provided may be an argument or group name
Examples
# use clap_builder as clap; # use ; let result = new .arg .arg .arg .group .try_get_matches_from; // because we used an arg from the group, and the group requires "-d" to be used, it's an // error assert!; let err = result.unwrap_err; assert_eq!;fn requires_all<impl Into<Id>: Into<Id>, impl IntoIterator<Item = impl Into<Id>>: IntoIterator<Item = impl Into<Id>>>(self: Self, ns: impl IntoIterator<Item = impl Into<Id>>) -> SelfSpecify arguments or groups that must be present when this group is.
This is not to be confused with a required group. Requirement rules function just like argument requirement rules, you can name other arguments or groups that must be present when one of the arguments from this group is used.
NOTE: The names provided may be an argument or group name
Examples
# use clap_builder as clap; # use ; let result = new .arg .arg .arg .arg .group .try_get_matches_from; // because we used an arg from the group, and the group requires "-d" and "-v" to be used, // yet we only used "-d" it's an error assert!; let err = result.unwrap_err; assert_eq!;fn conflicts_with<impl IntoResettable<Id>: IntoResettable<Id>>(self: Self, id: impl IntoResettable<Id>) -> SelfSpecify an argument or group that must not be present when this group is.
Exclusion (aka conflict) rules function just like argument exclusion rules, you can name other arguments or groups that must not be present when one of the arguments from this group are used.
NOTE: The name provided may be an argument, or group name
Examples
# use clap_builder as clap; # use ; let result = new .arg .arg .arg .group .try_get_matches_from; // because we used an arg from the group, and the group conflicts with "-d", it's an error assert!; let err = result.unwrap_err; assert_eq!;fn conflicts_with_all<impl Into<Id>: Into<Id>, impl IntoIterator<Item = impl Into<Id>>: IntoIterator<Item = impl Into<Id>>>(self: Self, ns: impl IntoIterator<Item = impl Into<Id>>) -> SelfSpecify arguments or groups that must not be present when this group is.
Exclusion rules function just like argument exclusion rules, you can name other arguments or groups that must not be present when one of the arguments from this group are used.
NOTE: The names provided may be an argument, or group name
Examples
# use clap_builder as clap; # use ; let result = new .arg .arg .arg .arg .group .try_get_matches_from; // because we used an arg from the group, and the group conflicts with either "-v" or "-d" // it's an error assert!; let err = result.unwrap_err; assert_eq!;
impl ArgGroup
fn get_id(self: &Self) -> &IdGet the name of the group
fn is_required_set(self: &Self) -> boolReports whether
ArgGroup::requiredis set
impl Clone for ArgGroup
fn clone(self: &Self) -> ArgGroup
impl Debug for ArgGroup
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Default for ArgGroup
fn default() -> ArgGroup
impl Eq for ArgGroup
impl Freeze for ArgGroup
impl From for ArgGroup
fn from(g: &ArgGroup) -> Self
impl PartialEq for ArgGroup
fn eq(self: &Self, other: &ArgGroup) -> bool
impl RefUnwindSafe for ArgGroup
impl Send for ArgGroup
impl StructuralPartialEq for ArgGroup
impl Sync for ArgGroup
impl Unpin for ArgGroup
impl UnwindSafe for ArgGroup
impl<T> Any for ArgGroup
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ArgGroup
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ArgGroup
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for ArgGroup
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for ArgGroup
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for ArgGroup
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for ArgGroup
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ArgGroup
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ArgGroup
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>