[][src]Struct sled::Batch

pub struct Batch { /* fields omitted */ }

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

Methods

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 = !

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.