Skip to main content

TableHandle

Trait TableHandle 

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

Required Methods§

Source

fn name(&self) -> &str

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl TableHandle for ReadOnlyUntypedTable

Source§

impl TableHandle for UntypedTableHandle

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>

Source§

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