pub struct Verdict {
pub authenticity: Authenticity,
pub channel: Channel,
pub score: f64,
pub confidence: f64,
pub hard_gate_hits: Vec<GateHit>,
pub signals: Vec<String>,
pub trace: Vec<String>,
pub group_scores: BTreeMap<String, f64>,
pub coverage_gap: f64,
}Fields§
§authenticity: Authenticity§channel: Channel§score: f640–100 weighted score across the scored groups.
confidence: f640–1. Reflects both signal strength and coverage.
hard_gate_hits: Vec<GateHit>§signals: Vec<String>§trace: Vec<String>Every step the decision took, so a user can audit the conclusion.
group_scores: BTreeMap<String, f64>§coverage_gap: f64Fraction of probes that errored out — high values force a downgrade.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Verdict
impl<'de> Deserialize<'de> for Verdict
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
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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