pub struct Product {
    pub path: Option<String>,
    pub name: Option<String>,
    pub test: bool,
    pub doctest: bool,
    pub bench: bool,
    pub doc: bool,
    pub plugin: bool,
    pub proc_macro: bool,
    pub harness: bool,
    pub edition: Option<Edition>,
    pub required_features: Vec<String>,
    pub crate_type: Option<Vec<String>>,
}
Expand description

Cargo uses the term “target” for both “target platform” and “build target” (the thing to build), which makes it ambigous. Here Cargo’s bin/lib target is renamed to product.

Fields

path: Option<String>

This field points at where the crate is located, relative to the Cargo.toml.

name: Option<String>

The name of a product is the name of the library or binary that will be generated. This is defaulted to the name of the package, with any dashes replaced with underscores. (Rust extern crate declarations reference this name; therefore the value must be a valid Rust identifier to be usable.)

test: bool

A flag for enabling unit tests for this product. This is used by cargo test.

doctest: bool

A flag for enabling documentation tests for this product. This is only relevant for libraries, it has no effect on other sections. This is used by cargo test.

bench: bool

A flag for enabling benchmarks for this product. This is used by cargo bench.

doc: bool

A flag for enabling documentation of this product. This is used by cargo doc.

plugin: bool

If the product is meant to be a compiler plugin, this field must be set to true for Cargo to correctly compile it and make it available for all dependencies.

proc_macro: bool

If the product is meant to be a “macros 1.1” procedural macro, this field must be set to true.

harness: bool

If set to false, cargo test will omit the --test flag to rustc, which stops it from generating a test harness. This is useful when the binary being built manages the test runner itself.

edition: Option<Edition>

If set then a product can be configured to use a different edition than the [package] is configured to use, perhaps only compiling a library with the 2018 edition or only compiling one unit test with the 2015 edition. By default all products are compiled with the edition specified in [package].

required_features: Vec<String>

The required-features field specifies which features the product needs in order to be built. If any of the required features are not selected, the product will be skipped. This is only relevant for the [[bin]], [[bench]], [[test]], and [[example]] sections, it has no effect on [lib].

crate_type: Option<Vec<String>>

The available options are “dylib”, “rlib”, “staticlib”, “cdylib”, and “proc-macro”.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. 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

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

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

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.