Enum libcnb_test::CargoProfile
source · pub enum CargoProfile {
Dev,
Release,
}Expand description
The profile to use when invoking Cargo.
Variants§
Dev
Provides faster compilation times at the expense of runtime performance and binary size.
Release
Produces assets with optimised runtime performance and binary size, at the expense of compilation time.
Trait Implementations§
source§impl Clone for CargoProfile
impl Clone for CargoProfile
source§fn clone(&self) -> CargoProfile
fn clone(&self) -> CargoProfile
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more