Enum diem_types::transaction::TransactionStatus [−][src]
pub enum TransactionStatus {
Discard(DiscardedVMStatus),
Keep(KeptVMStatus),
Retry,
}Expand description
The status of executing a transaction. The VM decides whether or not we should Keep the
transaction output or Discard it based upon the execution of the transaction. We wrap these
decisions around a VMStatus that provides more detail on the final execution state of the VM.
Variants
Discard(DiscardedVMStatus)Discard the transaction output
Tuple Fields of Discard
Keep(KeptVMStatus)Keep the transaction output
Tuple Fields of Keep
0: KeptVMStatusRetry the transaction, e.g., after a reconfiguration
Implementations
Trait Implementations
type Parameters = ()
type Parameters = ()
The type of parameters that arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default. Read more
type Strategy = BoxedStrategy<Self>
type Strategy = BoxedStrategy<Self>
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for TransactionStatus
impl Send for TransactionStatus
impl Sync for TransactionStatus
impl Unpin for TransactionStatus
impl UnwindSafe for TransactionStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
type Output = T
type Output = T
Should always be Self
Generates a hash used only for tests.