pub struct OptimizationRecommendation {
pub priority: RecommendationPriority,
pub category: String,
pub description: String,
pub expected_impact: String,
pub implementation_effort: ImplementationEffort,
}
Fields§
§priority: RecommendationPriority
§category: String
§description: String
§expected_impact: String
§implementation_effort: ImplementationEffort
Trait Implementations§
Source§impl Clone for OptimizationRecommendation
impl Clone for OptimizationRecommendation
Source§fn clone(&self) -> OptimizationRecommendation
fn clone(&self) -> OptimizationRecommendation
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 OptimizationRecommendation
impl RefUnwindSafe for OptimizationRecommendation
impl Send for OptimizationRecommendation
impl Sync for OptimizationRecommendation
impl Unpin for OptimizationRecommendation
impl UnwindSafe for OptimizationRecommendation
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