[][src]Struct sled::transaction::TransactionalTree

pub struct TransactionalTree { /* fields omitted */ }

A transaction that will be applied atomically to the Tree.

Implementations

impl TransactionalTree[src]

pub fn insert<K, V>(
    &self,
    key: K,
    value: V
) -> Result<Option<IVec>, UnabortableTransactionError> where
    IVec: From<K> + From<V>,
    K: AsRef<[u8]>, 
[src]

Set a key to a new value

pub fn remove<K>(
    &self,
    key: K
) -> Result<Option<IVec>, UnabortableTransactionError> where
    IVec: From<K>,
    K: AsRef<[u8]>, 
[src]

Remove a key

pub fn get<K: AsRef<[u8]>>(
    &self,
    key: K
) -> Result<Option<IVec>, UnabortableTransactionError>
[src]

Get the value associated with a key

pub fn apply_batch(
    &self,
    batch: &Batch
) -> Result<(), UnabortableTransactionError>
[src]

Atomically apply multiple inserts and removals.

Trait Implementations

impl Clone for TransactionalTree[src]

Auto Trait Implementations

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.