pub type WalEntryStream<'a> = BoxStream<'a, Result<(EntryId, WalEntry)>>;
A stream that yields tuple of WAL entry id and corresponding entry.
struct WalEntryStream<'a> {}