Skip to main content

parlov_core/
endpoint_stop.rs

1//! Stop-condition metadata for the endpoint-level aggregation loop.
2
3use crate::{NormativeStrength, Vector};
4
5/// Slim technique metadata for the stop rule — vector + strength, no probe context.
6#[derive(Debug, Clone)]
7pub struct StrategyMetaForStop {
8    /// Detection vector for this strategy.
9    pub vector: Vector,
10    /// RFC normative strength of the expected differential.
11    pub normative_strength: NormativeStrength,
12}