pub struct FindAnomalousRowsOp;Expand description
Marker type with a Complexity impl for find_anomalous_rows.
Trait Implementations§
Source§impl Complexity for FindAnomalousRowsOp
impl Complexity for FindAnomalousRowsOp
Source§const CLASS: ComplexityClass
const CLASS: ComplexityClass
Worst-case complexity class on a single-query call. For iterative
solvers this is the per-iter cost; the iteration count is bounded by
other configuration (max_iterations, tolerance, ef_construction).
Source§const DETAIL: &'static str = "O(n log k) full-scan baseline today; phase-2 lowers to O(k · log n) via the \
sublinear-Neumann single-entry primitive."
const DETAIL: &'static str = "O(n log k) full-scan baseline today; phase-2 lowers to O(k · log n) via the \ sublinear-Neumann single-entry primitive."
Optional human-readable detail for documentation / MCP tool schemas.
Defaults to the short label of
CLASS. Override when there’s a
non-obvious constant or k-bound.Auto Trait Implementations§
impl Freeze for FindAnomalousRowsOp
impl RefUnwindSafe for FindAnomalousRowsOp
impl Send for FindAnomalousRowsOp
impl Sync for FindAnomalousRowsOp
impl Unpin for FindAnomalousRowsOp
impl UnsafeUnpin for FindAnomalousRowsOp
impl UnwindSafe for FindAnomalousRowsOp
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