pub trait Database: KeyValueDB {
    fn is_indexed_column(&self, col: u32) -> bool;
}
Expand description

Database trait with ordered key capacity.

Required Methods§

Check if column allows content iteration and removal by prefix.

Implementors§