Type Alias Operation

Source
pub type Operation = OperationV32;
Expand description

The different LSM tree operations that can be performed as part of a mutation.

Aliased Type§

enum Operation {
    Insert,
    ReplaceOrInsert,
    Merge,
}

Variants§

§

Insert

§

ReplaceOrInsert

§

Merge

Trait Implementations

Source§

impl Clone for OperationV32

Source§

fn clone(&self) -> OperationV32

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OperationV32

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for OperationV32

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for OperationV32

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TypeFingerprint for OperationV32