pub struct PatternAnalysis {
pub pattern_id: String,
pub validation_score: f32,
pub matching_decisions: usize,
pub total_decisions: usize,
pub confidence: f32,
pub occurrences: usize,
}Expand description
Analysis results for a pattern
Fields§
§pattern_id: StringID of the pattern
validation_score: f32Validation score (0.0 to 1.0)
matching_decisions: usizeNumber of decisions matching this pattern
total_decisions: usizeTotal number of decisions analyzed
confidence: f32Pattern confidence score
occurrences: usizeNumber of occurrences
Trait Implementations§
Source§impl Clone for PatternAnalysis
impl Clone for PatternAnalysis
Source§fn clone(&self) -> PatternAnalysis
fn clone(&self) -> PatternAnalysis
Returns a duplicate of the value. Read more
1.0.0 · 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 PatternAnalysis
impl RefUnwindSafe for PatternAnalysis
impl Send for PatternAnalysis
impl Sync for PatternAnalysis
impl Unpin for PatternAnalysis
impl UnwindSafe for PatternAnalysis
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