pub struct FlaggedPoint {
pub chunk_id: String,
pub summary: String,
pub resonance: f64,
pub calibration: f64,
pub strength: f64,
}Expand description
A single thing to be careful about. Comes from a caution-class chunk’s trigger_desc —
“this kind of situation tends to bite”, never a prescribed answer.
Fields§
§chunk_id: String§summary: StringWhat to watch for. Sourced from the chunk’s existing trigger_desc. No answer text.
resonance: f64Resonance component (sim_content + sim_trigger, weighted).
calibration: f64Calibration component (confidence + context_score, weighted).
strength: f64Single-chunk fused strength ∈ [0,1].
Trait Implementations§
Source§impl Clone for FlaggedPoint
impl Clone for FlaggedPoint
Source§fn clone(&self) -> FlaggedPoint
fn clone(&self) -> FlaggedPoint
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 FlaggedPoint
impl Debug for FlaggedPoint
Auto Trait Implementations§
impl Freeze for FlaggedPoint
impl RefUnwindSafe for FlaggedPoint
impl Send for FlaggedPoint
impl Sync for FlaggedPoint
impl Unpin for FlaggedPoint
impl UnsafeUnpin for FlaggedPoint
impl UnwindSafe for FlaggedPoint
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