[][src]Struct sled::Batch

pub struct Batch { /* fields omitted */ }

A batch of updates that will be applied atomically to the Tree.

Examples

use sled::{Batch, open};

let db = open("batch_db_2")?;
db.insert("key_0", "val_0")?;

let mut batch = Batch::default();
batch.insert("key_a", "val_a");
batch.insert("key_b", "val_b");
batch.insert("key_c", "val_c");
batch.remove("key_0");

db.apply_batch(batch)?;
// key_0 no longer exists, and key_a, key_b, and key_c
// now do exist.

Implementations

impl Batch[src]

pub fn insert<K, V>(&mut self, key: K, value: V) where
    IVec: From<K> + From<V>, 
[src]

Set a key to a new value

pub fn remove<K>(&mut self, key: K) where
    IVec: From<K>, 
[src]

Remove a key

Trait Implementations

impl Clone for Batch[src]

impl Debug for Batch[src]

impl Default for Batch[src]

Auto Trait Implementations

impl RefUnwindSafe for Batch

impl Send for Batch

impl Sync for Batch

impl Unpin for Batch

impl UnwindSafe for Batch

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> 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.