Enum aerospike::ConsistencyLevel [] [src]

pub enum ConsistencyLevel {
    ConsistencyOne,
    ConsistencyAll,
}

ConsistencyLevel indicates how replicas should be consulted in a read operation to provide the desired consistency guarantee.

Variants

ConsistencyOne indicates only a single replica should be consulted in the read operation.

ConsistencyAll indicates that all replicas should be consulted in the read operation.

Trait Implementations

impl Debug for ConsistencyLevel
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ConsistencyLevel
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for ConsistencyLevel
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for ConsistencyLevel
[src]

[src]

Returns the "default value" for a type. Read more