Enum sputnikvm::VMStatus [] [src]

pub enum VMStatus {
    Running,
    ExitedOk,
    ExitedErr(OnChainError),
    ExitedNotSupported(NotSupportedError),
}

VM Status

Variants

A running VM.

VM is stopped without errors.

VM is stopped due to an error. The state of the VM is before the last failing instruction.

VM is stopped because it does not support certain operations. The client is expected to either drop the transaction or panic. This rarely happens unless the executor agrees upon on a really large number of gas limit, so it usually can be safely ignored.

Trait Implementations

impl Debug for VMStatus
[src]

[src]

Formats the value using the given formatter.

impl Clone for VMStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more