Struct tantivy::fastfield::U64FastFieldReader [] [src]

pub struct U64FastFieldReader { /* fields omitted */ }

FastFieldReader for unsigned 64-bits integers.

Methods

impl U64FastFieldReader
[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 Clone for U64FastFieldReader
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl FastFieldReader for U64FastFieldReader
[src]

Type of the value stored in the fastfield.

[src]

Return the value associated to the given document. Read more

[src]

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

[src]

Fills an output buffer with the fast field values associated with the DocId going from start to start + output.len(). Read more

[src]

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

Panics

Panics if the data is corrupted.

impl From<Vec<u64>> for U64FastFieldReader
[src]

[src]

Performs the conversion.