Enum sputnikvm::MachineStatus [] [src]

pub enum MachineStatus {
    Running,
    ExitedOk,
    ExitedErr(OnChainError),
    ExitedNotSupported(NotSupportedError),
    InvokeCreate(Context),
    InvokeCall(Context(U256, U256)),
}

Represents the current runtime status.

Variants

This runtime is actively running or has just been started.

This runtime has exited successfully. Calling step on this runtime again would panic.

This runtime has exited with errors. Calling step on this runtime again would panic.

This runtime has exited because it does not support certain operations. Unlike ExitedErr, this is not on-chain, and if it happens, client should either drop the transaction or panic (because it rarely happens).

This runtime requires execution of a sub runtime, which is a ContractCreation instruction.

This runtime requires execution of a sub runtime, which is a MessageCall instruction.

Trait Implementations

impl Debug for MachineStatus
[src]

[src]

Formats the value using the given formatter.

impl Clone for MachineStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more