pub trait Snapshot<K, V>: Sized {
type Iter: Iterator<Item = Result<((K, V), u64, i64), Error>>;
fn into_iters(self, num_iters: NonZeroUsize) -> Vec<Self::Iter>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
;
fn into_iter(self) -> Self::Iter { ... }
}
Expand description
An isolated, consistent read of previously written (Key, Value, Time, Diff) updates.