Enum icefalldb::Delta [] [src]

#[repr(C)]
pub enum Delta { KV(KV), Merge { left: u64, right: u64, }, Split { left: u64, right: u64, }, TxBegin(u64), TxCommit(u64), TxAbort(u64), Flush { pid: u64, annotation: Annotation, }, PartialSwap(u64), }

Variants

Fields of Merge

Fields of Split

Fields of Flush

Trait Implementations

impl Debug for Delta
[src]

Formats the value using the given formatter.

impl Clone for Delta
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Delta
[src]

impl PartialEq for Delta
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Decodable for Delta
[src]

Deserialize a value using a Decoder.

impl Encodable for Delta
[src]

Serialize a value using an Encoder.