pub trait ValueAccess<V> {
// Required methods
fn read(&self) -> V;
fn write(&self, value: V) -> (StorageCommitmentRoot, V);
}pub trait ValueAccess<V> {
// Required methods
fn read(&self) -> V;
fn write(&self, value: V) -> (StorageCommitmentRoot, V);
}