Enum elastic::types::prelude::TermVector [] [src]

pub enum TermVector {
    No,
    Yes,
    WithPositions,
    WithOffsets,
    WithPositionsOffsets,
}

Term vectors contain information about the terms produced by the analysis process.

Variants

No term vectors are stored. (default)

Just the terms in the field are stored.

Terms and positions are stored.

Terms and character offsets are stored.

Terms, positions, and character offsets are stored.

Trait Implementations

impl Copy for TermVector
[src]

impl Debug for TermVector
[src]

Formats the value using the given formatter.

impl Serialize for TermVector
[src]

Serialize this value into the given Serde serializer. Read more

impl Clone for TermVector
[src]