Struct redb::TableDefinition
source · pub struct TableDefinition<'a, K: RedbKey + 'static, V: RedbValue + 'static> { /* private fields */ }
Expand description
Defines the name and types of a table
A TableDefinition
should be opened for use by calling ReadTransaction::open_table
or WriteTransaction::open_table
Note that the lifetime of the K
and V
type parameters does not impact the lifetimes of the data
that is stored or retreived from the table
Implementations§
Trait Implementations§
source§impl<'a, K: RedbKey + 'static, V: RedbValue + 'static> TableHandle for TableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbValue + 'static> TableHandle for TableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbValue + 'static> Copy for TableDefinition<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> RefUnwindSafe for TableDefinition<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
impl<'a, K, V> Send for TableDefinition<'a, K, V>where K: Send, V: Send,
impl<'a, K, V> Sync for TableDefinition<'a, K, V>where K: Sync, V: Sync,
impl<'a, K, V> Unpin for TableDefinition<'a, K, V>where K: Unpin, V: Unpin,
impl<'a, K, V> UnwindSafe for TableDefinition<'a, K, V>where K: UnwindSafe, V: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more