Struct soroban_sdk::data::Data

source ·
pub struct Data(_);
Expand description

Data 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 data = env.data();
let key = symbol!("key");
env.data().set(key, 1);
assert_eq!(data.has(key), true);
assert_eq!(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
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. 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.