pub struct CandidateAssessment {
pub harness: String,
pub installed: bool,
pub candidate_slugs: Vec<String>,
pub filtered_slugs: Vec<String>,
pub chosen_slug: Option<String>,
pub chosen_model: Option<String>,
pub match_evidence: Option<MatchEvidence>,
pub skip_reason: Option<&'static str>,
}Expand description
Assessment of one candidate harness.
Fields§
§harness: String§installed: bool§candidate_slugs: Vec<String>§filtered_slugs: Vec<String>§chosen_slug: Option<String>§chosen_model: Option<String>§match_evidence: Option<MatchEvidence>§skip_reason: Option<&'static str>Trait Implementations§
Source§impl Clone for CandidateAssessment
impl Clone for CandidateAssessment
Source§fn clone(&self) -> CandidateAssessment
fn clone(&self) -> CandidateAssessment
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 moreAuto Trait Implementations§
impl Freeze for CandidateAssessment
impl RefUnwindSafe for CandidateAssessment
impl Send for CandidateAssessment
impl Sync for CandidateAssessment
impl Unpin for CandidateAssessment
impl UnsafeUnpin for CandidateAssessment
impl UnwindSafe for CandidateAssessment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more