Expand description
For each transaction the VM executes, the VM will output a WriteSet that
contains each access path it updates. For each access path, the VM can
either give its new value or delete it.
Structs§
- Write
Set  WriteSetcontains all access paths that one transaction modifies. Each of them is aWriteOpwhereValue(val)means that serialized representation should be updated toval, andDeletionmeans that we are going to delete this access path.- Write
SetMut  - A mutable version of 
WriteSet.