Struct tantivy::fastfield::FastFieldsWriter[][src]

pub struct FastFieldsWriter { /* fields omitted */ }

The fastfieldswriter regroup all of the fast field writers.

Methods

impl FastFieldsWriter
[src]

Create all FastFieldWriter required by the schema.

Get the FastFieldWriter associated to a field.

Returns the fast field multi-value writer for the given field.

Returns None if the field does not exist, or is not configured as a multivalued fastfield in the schema.

Returns the bytes fast field writer for the given field.

Returns None if the field does not exist, or is not configured as a bytes fastfield in the schema.

Indexes all of the fastfields of a new document.

Serializes all of the FastFieldWriters by pushing them in order to the fast field serializer.

Auto Trait Implementations