Enum exonum::storage::Change [] [src]

pub enum Change {
    Put(Vec<u8>),
    Delete,
}

An enum that represents a kind of change to some key in storage.

Variants

Put the specified value into storage for a corresponding key.

Delete a value from storage for a corresponding key.

Trait Implementations

impl Debug for Change
[src]

Formats the value using the given formatter.

impl Clone for Change
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more