[][src]Struct sled_extensions::expiring::Batch

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

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

Methods

impl<V, F> ExpiringBatch<V, F> where
    F: Encoding<V> + 'static, 
[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, F: Default> Default for ExpiringBatch<V, F>[src]

impl<V: Clone, F: Clone> Clone for ExpiringBatch<V, F>[src]

impl<V: Debug, F: Debug> Debug for ExpiringBatch<V, F>[src]

Auto Trait Implementations

impl<V, F> Send for ExpiringBatch<V, F> where
    F: Send,
    V: Send

impl<V, F> Unpin for ExpiringBatch<V, F> where
    F: Unpin,
    V: Unpin

impl<V, F> Sync for ExpiringBatch<V, F> where
    F: Sync,
    V: Sync

impl<V, F> UnwindSafe for ExpiringBatch<V, F> where
    F: UnwindSafe,
    V: UnwindSafe

impl<V, F> RefUnwindSafe for ExpiringBatch<V, F> where
    F: 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]