Home
last modified time | relevance | path

Searched refs:conflicts_with_all (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/clap/src/builder/
Darg_group.rs489 pub fn conflicts_with_all(mut self, ns: impl IntoIterator<Item = impl Into<Id>>) -> Self { in conflicts_with_all() method
530 .conflicts_with_all(["c2", "c3"]) in groups()
553 .conflicts_with_all(["c2", "c3"]) in test_from()
Darg.rs3613 pub fn conflicts_with_all(mut self, names: impl IntoIterator<Item = impl Into<Id>>) -> Self { in conflicts_with_all() method
/third_party/rust/crates/clap/tests/builder/
Dconflicts.rs31 .arg(arg!(-f --flag "some flag").conflicts_with_all(["other"])) in flag_conflict_with_all()
428 .conflicts_with_all(["two", "three"]), in conflict_output_three_conflicting()
434 .conflicts_with_all(["one", "three"]), in conflict_output_three_conflicting()
440 .conflicts_with_all(["one", "two"]), in conflict_output_three_conflicting()
486 .conflicts_with_all(["two", "three"]), in three_conflicting_arguments()
492 .conflicts_with_all(["one", "three"]), in three_conflicting_arguments()
498 .conflicts_with_all(["one", "two"]), in three_conflicting_arguments()
Ddouble_require.rs20 .conflicts_with_all(["b", "c"]), in cmd()
/third_party/rust/crates/clap/clap_bench/benches/
D05_ripgrep.rs337 .conflicts_with_all(["file", "regexp", "type-list"]), in cmd()
339 .arg(flag("type-list").conflicts_with_all(["file", "files", "pattern", "regexp"])) in cmd()