pub struct SynthesisQuality {
pub family: String,
pub eligible_rows: usize,
pub covered_rows: usize,
pub score: f64,
pub reasons: Vec<String>,
}Expand description
Deterministic synthesis quality report.
Fields§
§family: StringFamily evaluated.
eligible_rows: usizeRows eligible for deterministic pack coverage scoring.
covered_rows: usizeEligible rows covered by generated rules.
score: f64Coverage ratio in the range [0.0, 1.0].
reasons: Vec<String>Human-readable deterministic reasons.
Trait Implementations§
Source§impl Clone for SynthesisQuality
impl Clone for SynthesisQuality
Source§fn clone(&self) -> SynthesisQuality
fn clone(&self) -> SynthesisQuality
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 SynthesisQuality
impl Debug for SynthesisQuality
Source§impl PartialEq for SynthesisQuality
impl PartialEq for SynthesisQuality
Source§fn eq(&self, other: &SynthesisQuality) -> bool
fn eq(&self, other: &SynthesisQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SynthesisQuality
Auto Trait Implementations§
impl Freeze for SynthesisQuality
impl RefUnwindSafe for SynthesisQuality
impl Send for SynthesisQuality
impl Sync for SynthesisQuality
impl Unpin for SynthesisQuality
impl UnsafeUnpin for SynthesisQuality
impl UnwindSafe for SynthesisQuality
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