pub struct DraftFieldReport {
pub field: String,
pub score: f64,
pub stability: Stability,
pub modifier: String,
pub values: Vec<String>,
pub baseline_prevalence: Option<f64>,
pub selected: bool,
}Expand description
One profiled field in the report, ranked.
Fields§
§field: StringDot-joined field path.
score: f64Contrastive score used for ranking (higher is better).
stability: StabilityValue-stability class across the exemplars.
modifier: StringSigma modifier chain chosen for the field (empty for a plain match).
values: Vec<String>Display values or derived pattern, capped.
baseline_prevalence: Option<f64>Fraction of baseline events this field’s value form matches, when a baseline was provided.
selected: boolWhether the field made it into the final selection.
Trait Implementations§
Source§impl Clone for DraftFieldReport
impl Clone for DraftFieldReport
Source§fn clone(&self) -> DraftFieldReport
fn clone(&self) -> DraftFieldReport
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 DraftFieldReport
impl Debug for DraftFieldReport
Auto Trait Implementations§
impl Freeze for DraftFieldReport
impl RefUnwindSafe for DraftFieldReport
impl Send for DraftFieldReport
impl Sync for DraftFieldReport
impl Unpin for DraftFieldReport
impl UnsafeUnpin for DraftFieldReport
impl UnwindSafe for DraftFieldReport
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