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: RedbKey + 'static, V: RedbValue + 'static> TableHandle for TableDefinition<'a, K, V>

Source§

impl<K: RedbKey + 'static, V: RedbValue + 'static> TableHandle for Table<'_, '_, K, V>