[][src]Struct solana_kvstore::KvStore

pub struct KvStore { /* fields omitted */ }

Methods

impl KvStore[src]

pub fn open_default<P>(root: P) -> Result<Self> where
    P: AsRef<Path>, 
[src]

pub fn open<P>(root: P, config: Config) -> Result<Self> where
    P: AsRef<Path>, 
[src]

pub fn partitioned<P, P2>(
    root: P,
    storage_dirs: &[P2],
    config: Config
) -> Result<Self> where
    P: AsRef<Path>,
    P2: AsRef<Path>, 
[src]

pub fn config(&self) -> &Config[src]

pub fn put(&self, key: &Key, data: &[u8]) -> Result<()>[src]

pub fn put_many<Iter, Tup, K, V>(&self, rows: Iter) -> Result<()> where
    Iter: Iterator<Item = Tup>,
    Tup: Borrow<(K, V)>,
    K: Borrow<Key>,
    V: Borrow<[u8]>, 
[src]

pub fn get(&self, key: &Key) -> Result<Option<Vec<u8>>>[src]

pub fn delete(&self, key: &Key) -> Result<()>[src]

pub fn delete_many<Iter, K>(&self, rows: Iter) -> Result<()> where
    Iter: Iterator<Item = K>,
    K: Borrow<Key>, 
[src]

pub fn batch(&self, config: WriteBatchConfig) -> WriteBatch[src]

pub fn commit(&self, batch: WriteBatch) -> Result<()>[src]

pub fn snapshot(&self) -> Snapshot[src]

pub fn range(
    &self,
    range: RangeInclusive<Key>
) -> Result<impl Iterator<Item = (Key, Vec<u8>)>>
[src]

pub fn destroy<P>(path: P) -> Result<()> where
    P: AsRef<Path>, 
[src]

Trait Implementations

impl Debug for KvStore[src]

Auto Trait Implementations

impl Send for KvStore

impl Unpin for KvStore

impl Sync for KvStore

impl !UnwindSafe for KvStore

impl !RefUnwindSafe for KvStore

Blanket Implementations

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.

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]