[][src]Struct sled_extensions::structured::Batch

pub struct Batch<V, E>(_, _, _);

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

Methods

impl<V, E> StructuredBatch<V, E> where
    E: Encoding<V>, 
[src]

pub fn insert<K>(&mut self, key: K, value: V) -> Result<()> where
    IVec: From<K>, 
[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<V: Default, E: Default> Default for StructuredBatch<V, E>[src]

impl<V: Clone, E: Clone> Clone for StructuredBatch<V, E>[src]

impl<V: Debug, E: Debug> Debug for StructuredBatch<V, E>[src]

Auto Trait Implementations

impl<V, E> Send for StructuredBatch<V, E> where
    E: Send,
    V: Send

impl<V, E> Unpin for StructuredBatch<V, E> where
    E: Unpin,
    V: Unpin

impl<V, E> Sync for StructuredBatch<V, E> where
    E: Sync,
    V: Sync

impl<V, E> UnwindSafe for StructuredBatch<V, E> where
    E: UnwindSafe,
    V: UnwindSafe

impl<V, E> RefUnwindSafe for StructuredBatch<V, E> where
    E: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]