Struct cw_storage_plus::SnapshotMap[][src]

pub struct SnapshotMap<'a, K, T> { /* fields omitted */ }
Expand description

Map that maintains a snapshots of one or more checkpoints. We can query historical data as well as current state. What data is snapshotted depends on the Strategy.

Implementations

Example:

use cw_storage_plus::{SnapshotMap, Strategy};

SnapshotMap::<&[u8], &str>::new(
    "never",
    "never__check",
    "never__change",
    Strategy::EveryBlock
);

load will return an error if no data is set at the given key, or on parse error

may_load will parse the data stored at the key if present, returns Ok(None) if no data there. returns an error on issues parsing

Loads the data, perform the specified action, and store the result in the database. This is shorthand for some common sequences, which may be useful.

If the data exists, action(Some(value)) is called. Otherwise action(None) is called.

This is a bit more customized than needed to only read “old” value 1 time, not 2 per naive approach

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.