Struct etcd::kv::KeyValueInfo [] [src]

pub struct KeyValueInfo {
    pub action: Action,
    pub node: Node,
    pub prev_node: Option<Node>,
}

Information about the result of a successful key-value API operation.

Fields

The action that was taken, e.g. get, set.

The etcd Node that was operated upon.

The previous state of the target node.

Trait Implementations

impl Clone for KeyValueInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for KeyValueInfo
[src]

Formats the value using the given formatter.

impl Eq for KeyValueInfo
[src]

impl Hash for KeyValueInfo
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for KeyValueInfo
[src]

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

This method tests for !=.