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

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

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

Variants

Put the specified value into the storage for the corresponding key.

Delete a value from the storage for the corresponding key.

Trait Implementations

impl Debug for Change
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Change
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Change
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Change

impl Sync for Change