Enum elastic::types::string::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 Clone for TermVector
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for TermVector
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for TermVector
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TermVector

impl Sync for TermVector