Struct ink_storage::Lazy

source ·
pub struct Lazy<V, KeyType: StorageKey = AutoKey> { /* private fields */ }
Expand description

A simple wrapper around a type to store it in a separate storage cell under its own storage key. If you want to update the value, first you need to get it, update the value, and then call set with the new value.

Important

The wrapper requires its own pre-defined storage key in order to determine where it stores value. By default, the is automatically calculated using AutoKey during compilation. However, anyone can specify a storage key using ManualKey. Specifying the storage key can be helpful for upgradeable contracts or you want to be resistant to future changes of storage key calculation strategy.

Note

If the contract has two or more Lazy with the same storage key, modifying the value of one of them will modify others.

This is an example of how you can do this:


use ink::storage::{traits::ManualKey, Lazy};

#[ink(storage)]
#[derive(Default)]
pub struct MyContract {
    owner: Lazy<AccountId>,
    balance: Lazy<Balance, ManualKey<123>>,
}

impl MyContract {
    #[ink(constructor)]
    pub fn new() -> Self {
        let mut instance = Self::default();
        let caller = Self::env().caller();
        instance.owner.set(&caller);
        instance.balance.set(&123456);
        instance
    }

}

Implementations§

Creates a new empty Lazy.

Reads the value from the contract storage, if it exists.

Writes the given value to the contract storage.

Reads the value from the contract storage.

Returns the default value for the storage type if no value exists.

Trait Implementations§

Formats the value using the given formatter. Read more

We implement this manually because the derived implementation adds trait bounds.

Returns the “default value” for a type. Read more
Convert self to a slice and append it to the destination.
Attempt to deserialize the value from input.
Storable type with storage key inside.
The storage key that the type prefers. It can be overwritten by an auto-generated storage key.
Storage key of the type.
Returns the storage key.
Returns the static storage layout of Self. Read more
The type identifying for which type info is provided. Read more
Returns the static type identifier for Self.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Storable type with storage key inside.
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.