pub struct TargetCandidate {
pub target: TargetKind,
pub stable_key: String,
pub urgency: f64,
pub rationale: String,
pub check_hints: Vec<String>,
pub plan: PlanKind,
pub normalization: TargetNormalization,
}Expand description
A scored verification target with its selected execution plan.
Fields§
§target: TargetKind§stable_key: String§urgency: f64§rationale: String§check_hints: Vec<String>§plan: PlanKind§normalization: TargetNormalizationTrait Implementations§
Source§impl Clone for TargetCandidate
impl Clone for TargetCandidate
Source§fn clone(&self) -> TargetCandidate
fn clone(&self) -> TargetCandidate
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 TargetCandidate
impl RefUnwindSafe for TargetCandidate
impl Send for TargetCandidate
impl Sync for TargetCandidate
impl Unpin for TargetCandidate
impl UnsafeUnpin for TargetCandidate
impl UnwindSafe for TargetCandidate
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