pub struct GapDetectionParams {
pub confidence_threshold: f32,
pub min_support_count: u32,
pub max_results: usize,
pub session_range: Option<(u32, u32)>,
pub sort_by: GapSeverity,
}Expand description
Parameters for gap detection.
Fields§
§confidence_threshold: f32Nodes with confidence below this are flagged as low-confidence foundations.
min_support_count: u32Minimum number of Supports edges an Inference should have.
max_results: usizeMaximum number of gaps to return.
session_range: Option<(u32, u32)>Optional session range filter (inclusive start, inclusive end).
sort_by: GapSeverityHow to sort the detected gaps.
Trait Implementations§
Source§impl Clone for GapDetectionParams
impl Clone for GapDetectionParams
Source§fn clone(&self) -> GapDetectionParams
fn clone(&self) -> GapDetectionParams
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 GapDetectionParams
impl RefUnwindSafe for GapDetectionParams
impl Send for GapDetectionParams
impl Sync for GapDetectionParams
impl Unpin for GapDetectionParams
impl UnsafeUnpin for GapDetectionParams
impl UnwindSafe for GapDetectionParams
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