pub trait LengthCheckedFeatureAdder<F, const N: usize> {
// Required methods
fn get_column_headers_array(&self) -> &[&str; N];
fn get_features(
&self,
processor: &ReplayProcessor<'_>,
frame: &Frame,
frame_count: usize,
current_time: f32,
) -> SubtrActorResult<[F; N]>;
}Expand description
Fixed-width feature extractor with compile-time column count validation.