pub enum Handle {
Column {
name: String,
},
Cell {
column: String,
row: usize,
},
Range {
column: String,
start: usize,
end: usize,
},
Dist {
column: String,
},
Row {
row: usize,
},
}Expand description
A stable, drill-able pointer to the evidence behind a finding.
Handles are the article’s “handle-based evidence navigation”: the scan
summary stays compact, and explain <handle> resolves one back to the
underlying record/column/cell. Their string form is canonical and stable
across runs so an agent can cache and re-query them.
Variants§
Column
A whole column, by name.
Cell
A single cell at (column, row).
Range
A contiguous row range [start, end) within a column.
Dist
A distribution-level finding comparing column against a baseline.
Row
A whole row, by index — for multivariate findings that span columns.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Handle
impl<'de> Deserialize<'de> for Handle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Handle
impl StructuralPartialEq for Handle
Auto Trait Implementations§
impl Freeze for Handle
impl RefUnwindSafe for Handle
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl UnsafeUnpin for Handle
impl UnwindSafe for Handle
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