Trait redb::TableHandle

source ·
pub trait TableHandle: Sealed {
    // Required method
    fn name(&self) -> &str;
}

Required Methods§

source

fn name(&self) -> &str

Implementors§

source§

impl TableHandle for UntypedTableHandle

source§

impl<'a, K: Key + 'static, V: Value + 'static> TableHandle for TableDefinition<'a, K, V>

source§

impl<K: Key + 'static, V: Value + 'static> TableHandle for Table<'_, K, V>