pub enum Verdict {
Accepted(f32),
Rejected(Reject),
}Expand description
Outcome of screening one candidate. Rejected candidates are dropped from the
selection statistics entirely (the “exclude from advantage” rule).
Variants§
Accepted(f32)
Passed all layers; carries the verifier fitness.
Rejected(Reject)
Rejected; excluded from Pareto/advantage with a reason.
Trait Implementations§
impl Copy for Verdict
impl StructuralPartialEq for Verdict
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