Enum storage_map::PrepareResult[][src]

pub enum PrepareResult {
    AlreadyExists,
    UnableToCreate,
    Created,
}

Result of preparing a particular key.

Variants

Nothing is created, the key/value pair is already there.

Key was not found, but value creation failed.

Key was not found, but now the value has been created and inserted.

Auto Trait Implementations