pub struct CargoOptions {
Show 20 fields pub quiet: bool, pub jobs: Option<usize>, pub profile: Option<String>, pub features: Vec<String>, pub all_features: bool, pub no_default_features: bool, pub target: Option<String>, pub target_dir: Option<PathBuf>, pub manifest_path: Option<PathBuf>, pub ignore_rust_version: 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>, pub timings: Option<Vec<String>>, pub future_incompat_report: bool, pub args: Vec<String>,
}
Expand description

Cargo options for the build process

Fields

quiet: bool

Do not print cargo log messages

jobs: Option<usize>

Number of parallel jobs, defaults to # of CPUs

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: Option<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

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

timings: Option<Vec<String>>

Timing output formats (unstable) (comma separated): html, json

future_incompat_report: bool

Outputs a future incompatibility report at the end of the build (unstable)

args: Vec<String>

Rustc flags

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, replaced with CommandFactory::command

Deprecated, replaced with CommandFactory::command_for_update

Build a Command that can instantiate Self. Read more

Build a 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

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

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

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

Assign values from ArgMatches to self.

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.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. 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

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The resulting type after obtaining ownership.

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

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more