[][src]Enum rsoffkv::txn::TxnOp

pub enum TxnOp<'a> {
    Create {
        key: &'a str,
        value: &'a str,
        leased: bool,
    },
    Set {
        key: &'a str,
        value: &'a str,
    },
    Erase {
        key: &'a str,
    },
}

Transaction operation.

There are 3 possible operations in rsoffkv transaction: Create, Set or Erase

Variants

Create

Creates the key, rolls back if the key already exists or preceding entry does not exist.

Fields of Create

key: &'a strvalue: &'a strleased: bool
Set

Set - assigns new value to the given key, rolls back if the key does not exist. n.b. the behavior differs from the ordinary set

Fields of Set

key: &'a strvalue: &'a str
Erase

Erase - deletes the key, rolls back if the key does not exist

Fields of Erase

key: &'a str

Auto Trait Implementations

impl<'a> RefUnwindSafe for TxnOp<'a>

impl<'a> Send for TxnOp<'a>

impl<'a> Sync for TxnOp<'a>

impl<'a> Unpin for TxnOp<'a>

impl<'a> UnwindSafe for TxnOp<'a>

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