pub trait Database: KeyValueDB {
// Required method
fn is_indexed_column(&self, col: u32) -> bool;
}
Expand description
Database trait with ordered key capacity.
Required Methods§
sourcefn is_indexed_column(&self, col: u32) -> bool
fn is_indexed_column(&self, col: u32) -> bool
Check if column allows content iteration and removal by prefix.