redb

Trait 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 ReadOnlyTable<K, V>

Source§

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