Trait tantivy::collector::ScoreSegmentTweaker[][src]

pub trait ScoreSegmentTweaker<TScore>: 'static {
    fn score(&mut self, doc: DocId, score: Score) -> TScore;
}
Expand description

A ScoreSegmentTweaker makes it possible to modify the default score for a given document belonging to a specific segment.

It is the segment local version of the ScoreTweaker.

Required methods

Tweak the given score for the document doc.

Implementors