pub struct PerformanceRecommendation {
pub category: String,
pub description: String,
pub expected_impact: f32,
pub complexity: f32,
}Expand description
Optimization recommendation record
Fields§
§category: String§description: String§expected_impact: f32§complexity: f32Trait Implementations§
Source§impl Clone for PerformanceRecommendation
impl Clone for PerformanceRecommendation
Source§fn clone(&self) -> PerformanceRecommendation
fn clone(&self) -> PerformanceRecommendation
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 PerformanceRecommendation
impl Debug for PerformanceRecommendation
Source§impl<'de> Deserialize<'de> for PerformanceRecommendation
impl<'de> Deserialize<'de> for PerformanceRecommendation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PerformanceRecommendation
impl RefUnwindSafe for PerformanceRecommendation
impl Send for PerformanceRecommendation
impl Sync for PerformanceRecommendation
impl Unpin for PerformanceRecommendation
impl UnsafeUnpin for PerformanceRecommendation
impl UnwindSafe for PerformanceRecommendation
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