pub trait TableInfo:
Send
+ Sync
+ Debug
+ 'static {
// Required methods
fn name(&self) -> &'static str;
fn is_dupsort(&self) -> bool;
}
Expand description
Trait that provides object-safe access to the table’s metadata.
Required Methods§
Sourcefn is_dupsort(&self) -> bool
fn is_dupsort(&self) -> bool
Whether the table is a DUPSORT
table.