Enum diem_state_view::StateViewId
source · pub enum StateViewId {
ChunkExecution {
first_version: Version,
},
BlockExecution {
block_id: HashValue,
},
TransactionValidation {
base_version: Version,
},
Miscellaneous,
}
Variants§
ChunkExecution
Fields
§
first_version: Version
State-sync applying a chunk of transactions.
BlockExecution
Fields
§
block_id: HashValue
LEC applying a block.
TransactionValidation
Fields
§
base_version: Version
VmValidator verifying incoming transaction.
Miscellaneous
For test, db-bootstrapper, etc. Usually not aimed to pass to VM.
Trait Implementations§
source§impl Clone for StateViewId
impl Clone for StateViewId
source§fn clone(&self) -> StateViewId
fn clone(&self) -> StateViewId
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more