[][src]Struct ivy_core::KvStore

pub struct KvStore {}

A simple-to-use log structured key-value store.

Key-value pairs are stored in a HashMap in memory and not persisted to disk.

Example:

let mut store = KvStore::new();
store.set("key".to_owned(), "value".to_owned());
let val = store.get("key".to_owned());
assert_eq!(val, Some("value".to_owned()));

Trait Implementations

impl Debug for KvStore[src]

impl Default for KvStore[src]

Auto Trait Implementations

impl RefUnwindSafe for KvStore

impl Send for KvStore

impl Sync for KvStore

impl Unpin for KvStore

impl UnwindSafe for KvStore

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.