pub trait ListableSubstateDatabase {
    // Required method
    fn list_partition_keys(
        &self
    ) -> Box<dyn Iterator<Item = DbPartitionKey> + '_>;
}
Expand description

A partition listing interface between Track and a database vendor.

Required Methods§

source

fn list_partition_keys(&self) -> Box<dyn Iterator<Item = DbPartitionKey> + '_>

Iterates over all partition keys, in an arbitrary order.

Implementations on Foreign Types§

source§

impl<D> ListableSubstateDatabase for HashTreeUpdatingDatabase<D>

Implementors§