pub struct ContractData(_);
Expand description

ContractData stores and retrieves data for the currently executing contract.

All data stored can only be queried and modified by the contract that stores it. Other contracts cannot query or modify data stored by other contracts. Data is stored in the ledger and viewable outside of contracts where-ever the ledger is accessible.

Examples

use soroban_sdk::{Env, Symbol};

let contract_data = env.contract_data();
let key = Symbol::from_str("key");
env.contract_data().set(key, 1);
assert_eq!(contract_data.has(key), true);
assert_eq!(contract_data.get::<_, i32>(key), Some(Ok(1)));

Implementations

Returns if there is a value stored for the given key in the currently executing contracts data.

Returns the value there is a value stored for the given key in the currently executing contracts data.

Panics

When the key does not have a value stored.

When the value stored cannot be converted into the type expected.

TODO

Add safe checked versions of these functions.

Returns the value there is a value stored for the given key in the currently executing contracts data.

Panics

When the key does not have a value stored.

Sets the value for the given key in the currently executing contracts data.

If the key already has a value associated with it, the old value is replaced by the new value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.