Struct tantivy::fastfield::I64FastFieldReader [] [src]

pub struct I64FastFieldReader { /* fields omitted */ }

FastFieldReader for signed 64-bits integers.

Methods

impl I64FastFieldReader
[src]

[src]

Returns the minimum value for this fast field.

The min value does not take in account of possible deleted document, and should be considered as a lower bound of the actual minimum value.

[src]

Returns the maximum value for this fast field.

The max value does not take in account of possible deleted document, and should be considered as an upper bound of the actual maximum value.

Trait Implementations

impl FastFieldReader for I64FastFieldReader
[src]

Type of the value stored in the fastfield.

[src]

Panics

May panic or return wrong random result if doc is greater or equal to the segment's maxdoc.

[src]

Panics

May panic or return wrong random result if doc is greater or equal to the segment's maxdoc.

[src]

Opens a new fast field reader given a read only source.

Panics

Panics if the data is corrupted.

[src]

Returns true iff the given field_type makes it possible to access the field values via a fastfield. Read more