Struct typedb::KV [] [src]

pub struct KV<K, V> { /* fields omitted */ }

The type that represents the key-value store

Methods

impl<K, V> KV<K, V> where
    K: Clone + Serialize + for<'kde> Deserialize<'kde> + Eq + Hash,
    V: Clone + Serialize + for<'vde> Deserialize<'vde>, 
[src]

Creates a new instance of the KV store

Inserta a key, value pair into the key-value store

Get the value from a key

Removes a key and associated value from the key-value Store

get all the keys contained in the KV Store