Enum tantivy::schema::IndexRecordOption [] [src]

pub enum IndexRecordOption {
    Basic,
    WithFreqs,
    WithFreqsAndPositions,
}

IndexRecordOption describes an amount information associated to a given indexed field.

It is both used to:

Variants

records only the DocIds

records the document ids as well as the term frequency. The term frequency can help giving better scoring of the documents.

records the document id, the term frequency and the positions of the occurences in the document. Positions are required to run PhraseQueries.

Methods

impl IndexRecordOption
[src]

[src]

Returns true iff the term frequency will be encoded.

[src]

Returns true iff the term positions within the document are stored as well.

[src]

Returns true iff this option includes encoding term frequencies.

[src]

Returns true iff this option include encoding term positions.

Trait Implementations

impl Clone for IndexRecordOption
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for IndexRecordOption
[src]

impl Debug for IndexRecordOption
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for IndexRecordOption
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialOrd for IndexRecordOption
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for IndexRecordOption
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Eq for IndexRecordOption
[src]

impl Hash for IndexRecordOption
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more