Home
last modified time | relevance | path

Searched refs:AppSettings (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/clap/src/builder/
Dcommand.rs12 use crate::builder::app_settings::{AppFlags, AppSettings};
666 if self.settings.is_set(AppSettings::Multicall) { in try_get_matches_from_mut()
694 if !self.settings.is_set(AppSettings::NoBinaryName) { in try_get_matches_from_mut()
941 self.global_setting(AppSettings::NoBinaryName) in no_binary_name()
943 self.unset_global_setting(AppSettings::NoBinaryName) in no_binary_name()
972 self.global_setting(AppSettings::IgnoreErrors) in ignore_errors()
974 self.unset_global_setting(AppSettings::IgnoreErrors) in ignore_errors()
992 self.global_setting(AppSettings::AllArgsOverrideSelf) in args_override_self()
994 self.unset_global_setting(AppSettings::AllArgsOverrideSelf) in args_override_self()
1020 self.global_setting(AppSettings::DontDelimitTrailingValues) in dont_delimit_trailing_values()
[all …]
Dapp_settings.rs30 pub(crate) enum AppSettings { enum
109 impl_settings! { AppSettings, AppFlags,
/third_party/rust/crates/clap/
DCHANGELOG.md385 - Replacing `AppSettings` and `ArgSettings` enums with getters/setters
725 - `AppSettings::NoAutoVersion` with `ArgAction` or `Command::disable_version_flag` (#3800)
726 - `AppSettings::NoHelpVersion` with `ArgAction` or `Command::disable_help_flag` / `Command::disable…
943 …g help like `--help`, rather than short help (`-h`), deprecated `clap::AppSettings::UseLongFormatF…
952 …g help like `--help`, rather than short help (`-h`), deprecated `clap::AppSettings::UseLongFormatF…
953 - *(error)* Deprecate `clap::AppSettings::WaitOnError`, leaving it to the user to implement
954 …uired(true).arg_required_else_help(true)` is now preferred over `clap::AppSettings::SubcommandRequ…
955 - *(builder)* `clap::AppSettings` are nearly all deprecated and replaced with builder methods and g…
1218 3. Change `AppSettings::HelpRequired` to `AppSettings::HelpExpected`
1232 - `AppSettings::UnifiedHelpMessage` is now default behaviour
[all …]