pub trait RankingLayer: Send + Sync {
// Required method
fn apply(&self, items: &mut Vec<(usize, f32)>, chunks: &[CodeChunk]);
}Expand description
A composable layer in the ranking pipeline.
Implementations operate on the full (idx, score) list plus the
canonical chunks slice. See the module-level docs for ordering
conventions.