pub trait ReadableMultimapTable<K: Key + 'static, V: Key + 'static>: ReadableTableMetadata {
    // Required methods
    fn get<'a>(
        &self,
        key: impl Borrow<K::SelfType<'a>>
    ) -> Result<MultimapValue<'_, V>, StorageError>;
    fn range<'a, KR>(
        &self,
        range: impl RangeBounds<KR> + 'a
    ) -> Result<MultimapRange<'_, K, V>, StorageError>
       where KR: Borrow<K::SelfType<'a>> + 'a;

    // Provided method
    fn iter(&self) -> Result<MultimapRange<'_, K, V>, StorageError> { ... }
}

Required Methods§

source

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

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>, StorageError>
where KR: Borrow<K::SelfType<'a>> + 'a,

Provided Methods§

source

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

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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

source§

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