Struct redb::MultimapTable

source ·
pub struct MultimapTable<'txn, K: Key + 'static, V: Key + 'static> { /* private fields */ }
Expand description

A multimap table

Multimap tables may have multiple values associated with each key

Implementations§

source§

impl<'txn, K: Key + 'static, V: Key + 'static> MultimapTable<'txn, K, V>

source

pub fn insert<'k, 'v>( &mut self, key: impl Borrow<K::SelfType<'k>>, value: impl Borrow<V::SelfType<'v>>, ) -> Result<bool>

Add the given value to the mapping of the key

Returns true if the key-value pair was present

source

pub fn remove<'k, 'v>( &mut self, key: impl Borrow<K::SelfType<'k>>, value: impl Borrow<V::SelfType<'v>>, ) -> Result<bool>

Removes the given key-value pair

Returns true if the key-value pair was present

source

pub fn remove_all<'a>( &mut self, key: impl Borrow<K::SelfType<'a>>, ) -> Result<MultimapValue<'_, V>>

Removes all values for the given key

Returns an iterator over the removed values. Values are in ascending order.

Trait Implementations§

source§

impl<'txn, K: Key + 'static, V: Key + 'static> Drop for MultimapTable<'txn, K, V>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<K: Key + 'static, V: Key + 'static> MultimapTableHandle for MultimapTable<'_, K, V>

source§

fn name(&self) -> &str

source§

impl<'txn, K: Key + 'static, V: Key + 'static> ReadableMultimapTable<K, V> for MultimapTable<'txn, K, V>

source§

fn get<'a>( &self, key: impl Borrow<K::SelfType<'a>>, ) -> Result<MultimapValue<'_, V>>

Returns an iterator over all values for the given key. Values are in ascending order.

source§

fn range<'a, KR>( &self, range: impl RangeBounds<KR> + 'a, ) -> Result<MultimapRange<'_, K, V>>
where KR: Borrow<K::SelfType<'a>> + 'a,

Returns a double-ended iterator over a range of elements in the table

source§

fn iter(&self) -> Result<MultimapRange<'_, K, V>>

Returns an double-ended iterator over all elements in the table. Values are in ascending order.
source§

impl<'txn, K: Key + 'static, V: Key + 'static> ReadableTableMetadata for MultimapTable<'txn, K, V>

source§

fn len(&self) -> Result<u64>

Returns the number of key-value pairs in the table

source§

fn stats(&self) -> Result<TableStats>

Retrieves information about storage usage for the table
source§

fn is_empty(&self) -> Result<bool>

Returns true if the table is empty

Auto Trait Implementations§

§

impl<'txn, K, V> Freeze for MultimapTable<'txn, K, V>

§

impl<'txn, K, V> !RefUnwindSafe for MultimapTable<'txn, K, V>

§

impl<'txn, K, V> Send for MultimapTable<'txn, K, V>
where V: Send + Sync, K: Send,

§

impl<'txn, K, V> Sync for MultimapTable<'txn, K, V>
where V: Sync, K: Sync,

§

impl<'txn, K, V> Unpin for MultimapTable<'txn, K, V>
where V: Unpin, K: Unpin,

§

impl<'txn, K, V> !UnwindSafe for MultimapTable<'txn, K, V>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 160 bytes