Struct tantivy::termdict::TermDictionaryImpl [] [src]

pub struct TermDictionaryImpl { /* fields omitted */ }

See TermDictionary

Trait Implementations

impl<'a> TermDictionary<'a> for TermDictionaryImpl
[src]

Streamer type associated to the term dictionary

StreamerBuilder type associated to the term dictionary

[src]

Opens a TermDictionary given a data source.

[src]

Returns the number of terms in the dictionary. Term ordinals range from 0 to num_terms() - 1. Read more

[src]

Returns the ordinal associated to a given term.

[src]

Returns the term associated to a given term ordinal. Read more

[src]

Returns the number of terms in the dictionary.

[src]

Lookups the value corresponding to the key.

[src]

Returns a range builder, to stream all of the terms within an interval. Read more

[src]

A stream of all the sorted terms. See also .stream_field()

[src]

A stream of all the sorted terms in the given field.