pub struct CliUnstable {
Show 30 fields pub allow_features: Option<BTreeSet<String>>, pub print_im_a_teapot: bool, pub advanced_env: bool, pub avoid_dev_deps: bool, pub binary_dep_depinfo: bool, pub bindeps: bool, pub build_std: Option<Vec<String>>, pub build_std_features: Option<Vec<String>>, pub config_include: bool, pub credential_process: bool, pub check_cfg_features: bool, pub doctest_in_workspace: bool, pub doctest_xcompile: bool, pub dual_proc_macros: bool, pub features: Option<Vec<String>>, pub jobserver_per_rustc: bool, pub minimal_versions: bool, pub mtime_on_use: bool, pub multitarget: bool, pub no_index_update: bool, pub panic_abort_tests: bool, pub host_config: bool, pub http_registry: bool, pub target_applies_to_host: bool, pub rustdoc_map: bool, pub separate_nightlies: bool, pub terminal_width: Option<Option<usize>>, pub unstable_options: bool, pub rustdoc_scrape_examples: Option<String>, pub skip_rustdoc_fingerprint: bool,
}
Expand description

A parsed representation of all unstable flags that Cargo accepts.

Cargo, like rustc, accepts a suite of -Z flags which are intended for gating unstable functionality to Cargo. These flags are only available on the nightly channel of Cargo.

Fields

allow_features: Option<BTreeSet<String>>print_im_a_teapot: booladvanced_env: boolavoid_dev_deps: boolbinary_dep_depinfo: boolbindeps: boolbuild_std: Option<Vec<String>>build_std_features: Option<Vec<String>>config_include: boolcredential_process: boolcheck_cfg_features: booldoctest_in_workspace: booldoctest_xcompile: booldual_proc_macros: boolfeatures: Option<Vec<String>>jobserver_per_rustc: boolminimal_versions: boolmtime_on_use: boolmultitarget: boolno_index_update: boolpanic_abort_tests: boolhost_config: boolhttp_registry: booltarget_applies_to_host: boolrustdoc_map: boolseparate_nightlies: boolterminal_width: Option<Option<usize>>unstable_options: boolrustdoc_scrape_examples: Option<String>skip_rustdoc_fingerprint: bool

Implementations

Generates an error if -Z unstable-options was not used for a new, unstable command-line flag.

Generates an error if -Z unstable-options was not used for a new, unstable subcommand.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. 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.

Should always be Self

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.