Struct tantivy::query::AllScorer[][src]

pub struct AllScorer { /* fields omitted */ }

Scorer associated to the AllQuery query.

Trait Implementations

impl DocSet for AllScorer
[src]

Goes to the next element. .advance(...) needs to be called a first time to point to the correct element. Read more

Returns the current document

Returns a best-effort hint of the length of the docset. Read more

After skipping, position the iterator in such a way that .doc() will return a value greater than or equal to target. Read more

Fills a given mutable buffer with the next doc ids from the DocSet Read more

Appends all docs to a bitset.

Returns the number documents matching. Read more

impl Scorer for AllScorer
[src]

Returns the score. Read more

Consumes the complete DocSet and push the scored documents to the collector. Read more

Auto Trait Implementations

impl Send for AllScorer

impl Sync for AllScorer