pub struct ConformalCalibrationTruth {
pub sample_ids: Vec<SampleId>,
pub values: Vec<Vec<f64>>,
}Expand description
Truth supplied by the data layer for a calibration replay. It carries the
same stable physical sample ids as the point block so a host can never
smuggle a positional y_true matrix across a reordered replay.
Fields§
§sample_ids: Vec<SampleId>§values: Vec<Vec<f64>>Trait Implementations§
Source§impl Clone for ConformalCalibrationTruth
impl Clone for ConformalCalibrationTruth
Source§fn clone(&self) -> ConformalCalibrationTruth
fn clone(&self) -> ConformalCalibrationTruth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConformalCalibrationTruth
impl Debug for ConformalCalibrationTruth
Source§impl<'de> Deserialize<'de> for ConformalCalibrationTruth
impl<'de> Deserialize<'de> for ConformalCalibrationTruth
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
impl StructuralPartialEq for ConformalCalibrationTruth
Auto Trait Implementations§
impl Freeze for ConformalCalibrationTruth
impl RefUnwindSafe for ConformalCalibrationTruth
impl Send for ConformalCalibrationTruth
impl Sync for ConformalCalibrationTruth
impl Unpin for ConformalCalibrationTruth
impl UnsafeUnpin for ConformalCalibrationTruth
impl UnwindSafe for ConformalCalibrationTruth
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