pub struct SupportVerdict {
pub supported: bool,
pub confidence: u8,
pub rationale: String,
}Expand description
The judge’s verdict for one claim.
Fields§
§supported: boolWhether the cited evidence, on its own, supports the claim.
confidence: u8Confidence in the verdict, percent (0–100).
rationale: StringOne short sentence explaining the verdict; recorded in the validator report so it survives into spans and logs.
Trait Implementations§
Source§impl Clone for SupportVerdict
impl Clone for SupportVerdict
Source§fn clone(&self) -> SupportVerdict
fn clone(&self) -> SupportVerdict
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 SupportVerdict
impl Debug for SupportVerdict
impl Eq for SupportVerdict
Source§impl PartialEq for SupportVerdict
impl PartialEq for SupportVerdict
impl StructuralPartialEq for SupportVerdict
Auto Trait Implementations§
impl Freeze for SupportVerdict
impl RefUnwindSafe for SupportVerdict
impl Send for SupportVerdict
impl Sync for SupportVerdict
impl Unpin for SupportVerdict
impl UnsafeUnpin for SupportVerdict
impl UnwindSafe for SupportVerdict
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