pub struct MultiSensorRecommendation {
pub sensor_id: String,
pub recommendations: Vec<RecommendedSample>,
pub current_p95_std: f64,
pub goal_met: bool,
}Expand description
Aggregated recommendations from multiple sensors.
Fields§
§sensor_id: StringSensor identifier label (e.g., “hall”, “gas”, “thermistor”).
recommendations: Vec<RecommendedSample>Recommendations from this sensor’s calibration session.
current_p95_std: f64Current 95th-percentile posterior std for this sensor.
goal_met: boolWhether this sensor has met its precision goal.
Trait Implementations§
Source§impl Clone for MultiSensorRecommendation
impl Clone for MultiSensorRecommendation
Source§fn clone(&self) -> MultiSensorRecommendation
fn clone(&self) -> MultiSensorRecommendation
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 moreAuto Trait Implementations§
impl Freeze for MultiSensorRecommendation
impl RefUnwindSafe for MultiSensorRecommendation
impl Send for MultiSensorRecommendation
impl Sync for MultiSensorRecommendation
impl Unpin for MultiSensorRecommendation
impl UnsafeUnpin for MultiSensorRecommendation
impl UnwindSafe for MultiSensorRecommendation
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