pub struct Verdict {
pub flagged: bool,
pub reason: String,
}Expand description
The judge’s verdict.
Fields§
§flagged: boolWhether the judge flagged a violation of the rubric.
reason: StringShort reason / explanation extracted from the judge reply.
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin 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