pub struct CommonOptions {
Show 20 fields pub quiet: bool, pub jobs: Option<usize>, pub release: bool, pub profile: Option<String>, pub features: Vec<String>, pub all_features: bool, pub no_default_features: bool, pub target: Vec<String>, pub target_dir: Option<PathBuf>, pub manifest_path: Option<PathBuf>, pub ignore_rust_version: bool, pub message_format: Vec<String>, pub unit_graph: bool, pub verbose: usize, pub color: Option<String>, pub frozen: bool, pub locked: bool, pub offline: bool, pub config: Vec<String>, pub unstable_flags: Vec<String>,
}
Expand description

common cargo options

Fields

quiet: bool

Do not print cargo log messages

jobs: Option<usize>

Number of parallel jobs, defaults to # of CPUs

release: bool

Build artifacts in release mode, with optimizations

profile: Option<String>

Build artifacts with the specified Cargo profile

features: Vec<String>

Space or comma separated list of features to activate

all_features: bool

Activate all available features

no_default_features: bool

Do not activate the default feature

target: Vec<String>

Build for the target triple

target_dir: Option<PathBuf>

Directory for all generated artifacts

manifest_path: Option<PathBuf>

Path to Cargo.toml

ignore_rust_version: bool

Ignore rust-version specification in packages

message_format: Vec<String>

Error format

unit_graph: bool

Output build graph in JSON (unstable)

verbose: usize

Use verbose output (-vv very verbose/build.rs output)

color: Option<String>

Coloring: auto, always, never

frozen: bool

Require Cargo.lock and cache are up to date

locked: bool

Require Cargo.lock is up to date

offline: bool

Run without accessing the network

config: Vec<String>

Override a configuration value (unstable)

unstable_flags: Vec<String>

Unstable (nightly-only) flags to Cargo, see ‘cargo -Z help’ for details

Trait Implementations

Append to Command so it can instantiate Self. Read more

Append to Command so it can update self. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

👎 Deprecated since 3.1.0:

Replaced with `CommandFactory::command

Deprecated, replaced with CommandFactory::command

👎 Deprecated since 3.1.0:

Replaced with `CommandFactory::command_for_update

Deprecated, replaced with CommandFactory::command_for_update

Build an Command that can instantiate Self. Read more

Build an Command that can update self. Read more

Formats the value using the given formatter. Read more

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

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more

Assign values from ArgMatches to self.

Parse from std::env::args_os(), exit on error

Parse from std::env::args_os(), return Err on error.

Parse from iterator, exit on error

Parse from iterator, return Err on error.

Update from iterator, exit on error

Update from iterator, return Err on error.

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.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.