pub struct PerformanceEstimate {
pub binary_size_reduction_percent: f32,
pub cold_start_improvement_percent: f32,
pub memory_improvement_percent: f32,
pub compile_time_impact_percent: f32,
}Fields§
§binary_size_reduction_percent: f32§cold_start_improvement_percent: f32§memory_improvement_percent: f32§compile_time_impact_percent: f32Trait Implementations§
Source§impl Clone for PerformanceEstimate
impl Clone for PerformanceEstimate
Source§fn clone(&self) -> PerformanceEstimate
fn clone(&self) -> PerformanceEstimate
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 moreSource§impl Debug for PerformanceEstimate
impl Debug for PerformanceEstimate
Source§impl Default for PerformanceEstimate
impl Default for PerformanceEstimate
Source§fn default() -> PerformanceEstimate
fn default() -> PerformanceEstimate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PerformanceEstimate
impl RefUnwindSafe for PerformanceEstimate
impl Send for PerformanceEstimate
impl Sync for PerformanceEstimate
impl Unpin for PerformanceEstimate
impl UnwindSafe for PerformanceEstimate
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