Struct tantivy::schema::TextFieldIndexing[][src]

pub struct TextFieldIndexing { /* fields omitted */ }

Configuration defining indexing for a text field. It wraps:

Methods

impl TextFieldIndexing
[src]

Sets the tokenizer to be used for a given field.

Returns the tokenizer that will be used for this field.

Sets which information should be indexed with the tokens.

See IndexRecordOption for more detail.

Returns the indexing options associated to this field.

See IndexRecordOption for more detail.

Trait Implementations

impl Clone for TextFieldIndexing
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TextFieldIndexing
[src]

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

This method tests for !=.

impl Eq for TextFieldIndexing
[src]

impl Debug for TextFieldIndexing
[src]

Formats the value using the given formatter. Read more

impl Default for TextFieldIndexing
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations