Enum aerospike::operations::maps::MapWriteMode [] [src]

pub enum MapWriteMode {
    Update,
    UpdateOnly,
    CreateOnly,
}

Unique key map write type.

Variants

If the key already exists, the item will be overwritten. If the key does not exist, a new item will be created.

If the key already exists, the item will be overwritten. If the key does not exist, the write will fail.

If the key already exists, the write will fail. If the key does not exist, a new item will be created.

Trait Implementations

impl Debug for MapWriteMode
[src]

Formats the value using the given formatter.

impl Clone for MapWriteMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more