Enum evm::VMStatus [] [src]

pub enum VMStatus {
    Running,
    ExitedOk,
    ExitedErr(MachineError),
}

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.

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