pub struct OptimizationSuggestion {
pub category: SuggestionCategory,
pub severity: Severity,
pub description: String,
pub affected_nodes: Vec<String>,
pub benefit: Benefit,
}Expand description
A single optimization suggestion
Fields§
§category: SuggestionCategorySuggestion category
severity: SeveritySeverity (Critical, High, Medium, Low)
description: StringHuman-readable description
affected_nodes: Vec<String>Affected node IDs
benefit: BenefitExpected benefit
Trait Implementations§
Source§impl Clone for OptimizationSuggestion
impl Clone for OptimizationSuggestion
Source§fn clone(&self) -> OptimizationSuggestion
fn clone(&self) -> OptimizationSuggestion
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 OptimizationSuggestion
impl Debug for OptimizationSuggestion
Source§impl<'de> Deserialize<'de> for OptimizationSuggestion
impl<'de> Deserialize<'de> for OptimizationSuggestion
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 OptimizationSuggestion
impl RefUnwindSafe for OptimizationSuggestion
impl Send for OptimizationSuggestion
impl Sync for OptimizationSuggestion
impl Unpin for OptimizationSuggestion
impl UnwindSafe for OptimizationSuggestion
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