Struct redb::MultimapTableDefinition
source · pub struct MultimapTableDefinition<'a, K: RedbKey + 'static, V: RedbKey + 'static> { /* private fields */ }
Expand description
Defines the name and types of a multimap table
A MultimapTableDefinition
should be opened for use by calling ReadTransaction::open_multimap_table
or WriteTransaction::open_multimap_table
Multimap tables may have multiple values associated with each key
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: RedbKey + 'static> Clone for MultimapTableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> Clone for MultimapTableDefinition<'a, K, V>
source§impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> Display for MultimapTableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> Display for MultimapTableDefinition<'a, K, V>
source§impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> MultimapTableHandle for MultimapTableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> MultimapTableHandle for MultimapTableDefinition<'a, K, V>
impl<'a, K: RedbKey + 'static, V: RedbKey + 'static> Copy for MultimapTableDefinition<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> Freeze for MultimapTableDefinition<'a, K, V>
impl<'a, K, V> RefUnwindSafe for MultimapTableDefinition<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for MultimapTableDefinition<'a, K, V>
impl<'a, K, V> Sync for MultimapTableDefinition<'a, K, V>
impl<'a, K, V> Unpin for MultimapTableDefinition<'a, K, V>
impl<'a, K, V> UnwindSafe for MultimapTableDefinition<'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