Type Alias Operation

Source
pub type Operation = Operation<Key, Value>;
Expand description

Operation type alias.

Aliased Type§

pub enum Operation {
    Deleted(Digest),
    Update(Digest, Digest),
    Commit(u64),
}

Variants§

§

Deleted(Digest)

Indicates the key no longer has a value.

§

Update(Digest, Digest)

Indicates the key now has the wrapped value.

§

Commit(u64)

Indicates all prior operations are no longer subject to rollback, and the floor on inactive operations has been raised to the wrapped value.