pub type Keys<V> = Pin<Box<dyn Stream<Item = Result<Key<V>, Error>> + Send>>;
A stream of Keys in a BTree
Key
BTree
struct Keys<V> { /* private fields */ }