[][src]Struct perkv::RawKV

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

The type that represents a raw key-value store

Methods

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

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

Creates a new instance of the raw KV store

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

Inserts a key, value pair into the KV store

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

Gets the associated value from a key

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

Removes a key and associated value from the KV store

pub fn clear(&self) -> PRes<()>[src]

Removes all entries from the KV store

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

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

pub fn keys(&self) -> PRes<impl Iterator<Item = K>>[src]

Gets all the keys contained in the KV store

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<K, V> RefUnwindSafe for RawKV<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>,