pub struct EnhancedResourceEstimate {Show 13 fields
pub basic_resources: BasicResourceAnalysis,
pub ml_predictions: Option<MLPredictions>,
pub cost_analysis: Option<CostAnalysisResult>,
pub optimization_strategies: Option<Vec<OptimizationStrategy>>,
pub comparative_results: Option<ComparativeAnalysis>,
pub hardware_recommendations: Option<Vec<HardwareRecommendation>>,
pub scaling_predictions: Option<ScalingPredictions>,
pub visual_representations: HashMap<String, VisualRepresentation>,
pub tracking_data: Option<TrackingData>,
pub resource_scores: ResourceScores,
pub recommendations: Vec<Recommendation>,
pub estimation_time: Duration,
pub platform_optimizations: Vec<PlatformOptimization>,
}
Expand description
Enhanced resource estimate result
Fields§
§basic_resources: BasicResourceAnalysis
§ml_predictions: Option<MLPredictions>
§cost_analysis: Option<CostAnalysisResult>
§optimization_strategies: Option<Vec<OptimizationStrategy>>
§comparative_results: Option<ComparativeAnalysis>
§hardware_recommendations: Option<Vec<HardwareRecommendation>>
§scaling_predictions: Option<ScalingPredictions>
§visual_representations: HashMap<String, VisualRepresentation>
§tracking_data: Option<TrackingData>
§resource_scores: ResourceScores
§recommendations: Vec<Recommendation>
§estimation_time: Duration
§platform_optimizations: Vec<PlatformOptimization>
Trait Implementations§
Source§impl Clone for EnhancedResourceEstimate
impl Clone for EnhancedResourceEstimate
Source§fn clone(&self) -> EnhancedResourceEstimate
fn clone(&self) -> EnhancedResourceEstimate
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 EnhancedResourceEstimate
impl Debug for EnhancedResourceEstimate
Source§impl<'de> Deserialize<'de> for EnhancedResourceEstimate
impl<'de> Deserialize<'de> for EnhancedResourceEstimate
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 EnhancedResourceEstimate
impl RefUnwindSafe for EnhancedResourceEstimate
impl Send for EnhancedResourceEstimate
impl Sync for EnhancedResourceEstimate
impl Unpin for EnhancedResourceEstimate
impl UnwindSafe for EnhancedResourceEstimate
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