pub struct ObservationMetrics {
pub novelty: f32,
pub drift: f32,
pub confidence: f32,
pub stability: f32,
pub velocity: f32,
pub uncertainty: f32,
pub active_set_size: usize,
pub action_needed: bool,
}Expand description
Raw observation metrics from a single step
Fields§
§novelty: f32§drift: f32§confidence: f32§stability: f32§velocity: f32§uncertainty: f32§active_set_size: usize§action_needed: boolTrait Implementations§
Source§impl Clone for ObservationMetrics
impl Clone for ObservationMetrics
Source§fn clone(&self) -> ObservationMetrics
fn clone(&self) -> ObservationMetrics
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 ObservationMetrics
impl Debug for ObservationMetrics
Source§impl Default for ObservationMetrics
impl Default for ObservationMetrics
Source§fn default() -> ObservationMetrics
fn default() -> ObservationMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ObservationMetrics
impl RefUnwindSafe for ObservationMetrics
impl Send for ObservationMetrics
impl Sync for ObservationMetrics
impl Unpin for ObservationMetrics
impl UnwindSafe for ObservationMetrics
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