pub struct GateScore {
pub score: f64,
pub threshold: f64,
}Expand description
A gate-supplied confidence score and the threshold the gate judged it against (KRZ-315). Purely evidentiary: nothing in this module reads it.
Fields§
§score: f64The gate’s confidence in its own verdict (conventionally 0.0..=1.0; the scale is the gate’s to define).
threshold: f64The threshold the gate judged the score against — below it, a later slice routes the verdict to a human.
Trait Implementations§
impl Copy for GateScore
impl StructuralPartialEq for GateScore
Auto Trait Implementations§
impl Freeze for GateScore
impl RefUnwindSafe for GateScore
impl Send for GateScore
impl Sync for GateScore
impl Unpin for GateScore
impl UnsafeUnpin for GateScore
impl UnwindSafe for GateScore
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