[][src]Struct persawkv::BaseKV

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

The type that represents a key--(value mode generic)-value store

Methods

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

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

Creates a new instance of the value-mode-generic KV store

pub fn with_backend(
    persy: Persy,
    idxn: impl Into<Cow<'static, str>>,
    vm: ValueMode
) -> PRes<Self>
[src]

Creates a new instance of the value-mode-generic KV store with the specified Persy instance as backend

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

Gets the associated value from a key

pub fn iter(&self) -> PRes<Iter<K, V>>[src]

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

pub fn range<R>(&self, r: R) -> PRes<Iter<K, V>> where
    R: RangeBounds<K>, 
[src]

Returns an iterator visiting all key-value pairs inside the specified range in arbitrary order

Trait Implementations

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

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

Removes all entries from the KV store

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

Inserts a key, value pair into the KV store

fn keys(&self) -> PRes<KeysIter<K, V>>[src]

Gets all the keys contained in the KV store

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

Removes a key and associated value from the KV store

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

Auto Trait Implementations

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

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

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

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

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