pub struct CostPrediction {
pub predicted_cost_us: f64,
pub confidence_interval: (f64, f64),
pub model_confidence: f64,
}Expand description
Cost prediction from learned model.
Fields§
§predicted_cost_us: f64§confidence_interval: (f64, f64)§model_confidence: f64Trait Implementations§
Source§impl Clone for CostPrediction
impl Clone for CostPrediction
Source§fn clone(&self) -> CostPrediction
fn clone(&self) -> CostPrediction
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 CostPrediction
impl Debug for CostPrediction
Source§impl<'de> Deserialize<'de> for CostPrediction
impl<'de> Deserialize<'de> for CostPrediction
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 CostPrediction
impl RefUnwindSafe for CostPrediction
impl Send for CostPrediction
impl Sync for CostPrediction
impl Unpin for CostPrediction
impl UnwindSafe for CostPrediction
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