pub trait ReadTransaction {
// Required method
fn read_transaction(&self) -> StorageTransaction<&Self>;
}
Expand description
Creates a new instance of the storage read transaction.
Required Methods§
sourcefn read_transaction(&self) -> StorageTransaction<&Self>
fn read_transaction(&self) -> StorageTransaction<&Self>
Returns the read transaction without ability to commit the changes.
Object Safety§
This trait is not object safe.