Trait TableInfo

pub trait TableInfo:
    Send
    + Sync
    + Debug
    + 'static {
    // Required methods
    fn name(&self) -> &'static str;
    fn is_dupsort(&self) -> bool;
}
Available on crate feature provider only.
Expand description

Trait that provides object-safe access to the table’s metadata.

Required Methods§

fn name(&self) -> &'static str

The table’s name.

fn is_dupsort(&self) -> bool

Whether the table is a DUPSORT table.

Implementors§