Type Alias Operation
Source pub type Operation = Operation<Key, Value>;
Expand description
pub enum Operation {
Deleted(Digest),
Update(Digest, Digest),
Commit(u64),
}
Indicates the key no longer has a value.
Indicates the key now has the wrapped value.
Indicates all prior operations are no longer subject to rollback, and the floor on inactive
operations has been raised to the wrapped value.