pub struct EnhancedResourceConfig {Show 14 fields
pub base_config: ResourceEstimationConfig,
pub enable_ml_prediction: bool,
pub enable_cost_analysis: bool,
pub enable_optimization_strategies: bool,
pub enable_comparative_analysis: bool,
pub enable_realtime_tracking: bool,
pub enable_visual_representation: bool,
pub enable_hardware_recommendations: bool,
pub enable_scaling_predictions: bool,
pub cloud_platforms: Vec<CloudPlatform>,
pub optimization_objectives: Vec<OptimizationObjective>,
pub analysis_depth: AnalysisDepth,
pub custom_constraints: Vec<ResourceConstraint>,
pub export_formats: Vec<ReportFormat>,
}
Expand description
Enhanced resource estimation configuration
Fields§
§base_config: ResourceEstimationConfig
Base resource estimation configuration
enable_ml_prediction: bool
Enable ML-based resource prediction
enable_cost_analysis: bool
Enable cost analysis for cloud platforms
enable_optimization_strategies: bool
Enable resource optimization strategies
enable_comparative_analysis: bool
Enable comparative analysis
enable_realtime_tracking: bool
Enable real-time resource tracking
enable_visual_representation: bool
Enable visual resource representations
enable_hardware_recommendations: bool
Enable hardware-specific recommendations
enable_scaling_predictions: bool
Enable resource scaling predictions
cloud_platforms: Vec<CloudPlatform>
Cloud platforms for cost estimation
optimization_objectives: Vec<OptimizationObjective>
Optimization objectives
analysis_depth: AnalysisDepth
Analysis depth level
custom_constraints: Vec<ResourceConstraint>
Custom resource constraints
export_formats: Vec<ReportFormat>
Export formats for reports
Trait Implementations§
Source§impl Clone for EnhancedResourceConfig
impl Clone for EnhancedResourceConfig
Source§fn clone(&self) -> EnhancedResourceConfig
fn clone(&self) -> EnhancedResourceConfig
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 EnhancedResourceConfig
impl Debug for EnhancedResourceConfig
Source§impl Default for EnhancedResourceConfig
impl Default for EnhancedResourceConfig
Source§impl<'de> Deserialize<'de> for EnhancedResourceConfig
impl<'de> Deserialize<'de> for EnhancedResourceConfig
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 EnhancedResourceConfig
impl RefUnwindSafe for EnhancedResourceConfig
impl Send for EnhancedResourceConfig
impl Sync for EnhancedResourceConfig
impl Unpin for EnhancedResourceConfig
impl UnwindSafe for EnhancedResourceConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more