pub(crate) trait RawEntryReader: Send + Sync {
// Required method
fn read(
&self,
provider: &Provider,
start_id: EntryId,
) -> Result<BoxStream<'static, Result<Entry>>>;
}
Expand description
RawEntryReader provides the ability to read Entry from the underlying LogStore.