[][src]Struct persawkv::MultiKV

pub struct MultiKV<K, V>(_);

The type that represents a key--multiple-value store

Methods

impl<K, V> MultiKV<K, V> where
    K: IndexType,
    V: IndexType
[src]

pub fn new(p: &str, idxn: impl Into<Cow<'static, str>>) -> PRes<Self>[src]

Creates a new instance of the MultiKV store

pub fn get(&self, key: &K) -> PRes<Vec<V>>[src]

Gets the associated value from a key

pub fn iter(&self) -> PRes<impl Iterator<Item = (K, Vec<V>)>>[src]

Returns an iterator visiting all key-value pairs in arbitrary order

Trait Implementations

impl<K, V> KV<K, V> for MultiKV<K, V> where
    K: IndexType,
    V: IndexType
[src]

impl<K, V> Clone for MultiKV<K, V>[src]

Auto Trait Implementations

impl<K, V> Send for MultiKV<K, V> where
    K: Send,
    V: Send

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

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

impl<K, V> UnwindSafe for MultiKV<K, V> where
    K: UnwindSafe,
    V: UnwindSafe

impl<K, V> RefUnwindSafe for MultiKV<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,