pub struct Predictions {
pub values: Vec<f64>,
pub uncertainties: Vec<f64>,
}Expand description
Predictions generated by a hypothesis.
Fields§
§values: Vec<f64>Predicted values.
uncertainties: Vec<f64>Prediction uncertainties.
Implementations§
Trait Implementations§
Source§impl Clone for Predictions
impl Clone for Predictions
Source§fn clone(&self) -> Predictions
fn clone(&self) -> Predictions
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 Predictions
impl Debug for Predictions
Source§impl Default for Predictions
impl Default for Predictions
Source§fn default() -> Predictions
fn default() -> Predictions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Predictions
impl RefUnwindSafe for Predictions
impl Send for Predictions
impl Sync for Predictions
impl Unpin for Predictions
impl UnsafeUnpin for Predictions
impl UnwindSafe for Predictions
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