Trait fastfield_codecs::FastFieldDataAccess[][src]

pub trait FastFieldDataAccess {
    fn get_val(&self, position: u64) -> u64;
}
Expand description

FastFieldDataAccess is the trait to access fast field data during serialization and estimation.

Required methods

Return the value associated to the given position.

Whenever possible use the Iterator passed to the fastfield creation instead, for performance reasons.

Panics

May panic if position is greater than the index.

Implementations on Foreign Types

Implementors