Trait infinitree::index::FieldReader[][src]

pub trait FieldReader: Send {
    fn read_next<T: DeserializeOwned>(&mut self) -> Result<T, Box<dyn Error>>;
}
Expand description

Allows deserializing an infinite collection by reading records one by one.

Implemented by a reader::Transaction. There’s no need to implement this yourself.

Required methods

Read the next available record from storage.

Implementations on Foreign Types

Implementors