[][src]Struct typedb::KV

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]

pub fn new(p: &'static str) -> Result<KV<K, V>, PersyError>[src]

Creates a new instance of the KV store

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

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

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

Get the value from a key

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

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

pub fn keys(&mut self) -> Result<Vec<K>, PersyError>[src]

get all the keys contained in the KV Store

Auto Trait Implementations

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

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

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

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

impl<K, V> RefUnwindSafe for KV<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, 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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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>,