Struct redb::ReadOnlyMultimapTable

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

A read-only multimap table

Implementations§

source§

impl<K: Key + 'static, V: Key + 'static> ReadOnlyMultimapTable<K, V>

source

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

This method is like ReadableMultimapTable::get(), but the iterator is reference counted and keeps the transaction alive until it is dropped.

source

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

This method is like ReadableMultimapTable::range(), but the iterator is reference counted and keeps the transaction alive until it is dropped.

Trait Implementations§

source§

impl<K: Key + 'static, V: Key + 'static> ReadableMultimapTable<K, V> for ReadOnlyMultimapTable<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,

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<K: Key + 'static, V: Key + 'static> ReadableTableMetadata for ReadOnlyMultimapTable<K, V>

source§

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

Retrieves information about storage usage for the table
source§

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

Returns the number of entries in the table
source§

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

Returns true if the table is empty

Auto Trait Implementations§

§

impl<K, V> Freeze for ReadOnlyMultimapTable<K, V>

§

impl<K, V> !RefUnwindSafe for ReadOnlyMultimapTable<K, V>

§

impl<K, V> Send for ReadOnlyMultimapTable<K, V>
where V: Send + Sync, K: Send,

§

impl<K, V> Sync for ReadOnlyMultimapTable<K, V>
where V: Sync, K: Sync,

§

impl<K, V> Unpin for ReadOnlyMultimapTable<K, V>
where V: Unpin, K: Unpin,

§

impl<K, V> !UnwindSafe for ReadOnlyMultimapTable<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>,

§

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>,

§

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.