pub struct OptimizationPlan {
pub profile_overrides: HashMap<String, String>,
pub cargo_flags: Vec<String>,
pub rustc_flags: Vec<String>,
pub pre_warm_code: String,
pub init_array_code: String,
pub dependency_optimizations: Vec<DependencyOptimization>,
}Fields§
§profile_overrides: HashMap<String, String>§cargo_flags: Vec<String>§rustc_flags: Vec<String>§pre_warm_code: String§init_array_code: String§dependency_optimizations: Vec<DependencyOptimization>Trait Implementations§
Source§impl Clone for OptimizationPlan
impl Clone for OptimizationPlan
Source§fn clone(&self) -> OptimizationPlan
fn clone(&self) -> OptimizationPlan
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OptimizationPlan
impl RefUnwindSafe for OptimizationPlan
impl Send for OptimizationPlan
impl Sync for OptimizationPlan
impl Unpin for OptimizationPlan
impl UnwindSafe for OptimizationPlan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more