pub struct TuneSelectionReport {
pub name: String,
pub fields: Vec<String>,
pub false_positive_indexes: Vec<usize>,
}Expand description
One emitted selection and the FP exemplars it covers.
Fields§
§name: StringDetection identifier in the filter rule.
fields: Vec<String>Fields included in this conjunction.
false_positive_indexes: Vec<usize>Original FP indexes covered by this selection.
Trait Implementations§
Source§impl Clone for TuneSelectionReport
impl Clone for TuneSelectionReport
Source§fn clone(&self) -> TuneSelectionReport
fn clone(&self) -> TuneSelectionReport
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 TuneSelectionReport
impl Debug for TuneSelectionReport
Auto Trait Implementations§
impl Freeze for TuneSelectionReport
impl RefUnwindSafe for TuneSelectionReport
impl Send for TuneSelectionReport
impl Sync for TuneSelectionReport
impl Unpin for TuneSelectionReport
impl UnsafeUnpin for TuneSelectionReport
impl UnwindSafe for TuneSelectionReport
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