Operation

Type Alias Operation 

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

Operation type alias.

Aliased Type§

pub enum Operation {
    Set(Digest, Digest),
    Commit(Option<Digest>),
}

Variants§

§

Set(Digest, Digest)

Set a key to a value. The key must not already exist.

§

Commit(Option<Digest>)

Commit with optional metadata.