Lines Matching refs:conflicts_with
9 .arg(arg!(-f --flag "some flag").conflicts_with("other"))
20 .arg(arg!(-f --flag "some flag").conflicts_with("other"))
107 .arg(arg!(-f --flag "some flag").conflicts_with("gr"))
141 .arg(clap::arg!(-f --flag "some flag").conflicts_with("gr"))
178 .conflicts_with("flag"),
212 .arg(arg!(-f --flag "some flag").conflicts_with("gr"))
241 .arg(arg!(-f --flag "some flag").conflicts_with("gr"))
276 .conflicts_with("flag"),
304 let flag = arg!(--flag).conflicts_with("gr");
458 .conflicts_with("production"),
464 .conflicts_with("develop"),
517 .arg(Arg::new("config").long("config").conflicts_with("config"))
523 #[should_panic = "Argument or group 'extra' specified in 'conflicts_with*' for 'config' does not exist"]
526 .arg(Arg::new("config").long("config").conflicts_with("extra"))
536 .conflicts_with("opt")
557 .conflicts_with("flag"),
564 "conflicts_with should ignore default_value: {:?}",
588 .conflicts_with("one")
595 "conflicts_with on an arg group should ignore default_value: {:?}",
648 .group(ArgGroup::new("one").conflicts_with("opt"))
653 "arg group conflicts_with should ignore default_value: {:?}",