Enum ethcore::state::ProvedExecution[][src]

pub enum ProvedExecution {
    BadProof,
    Failed(ExecutionError),
    Complete(Executed),
}

Return type of proof validity check.

Variants

Proof wasn't enough to complete execution.

The transaction failed, but not due to a bad proof.

The transaction successfully completd with the given proof.

Trait Implementations

impl Debug for ProvedExecution
[src]

Formats the value using the given formatter. Read more

impl Clone for ProvedExecution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ProvedExecution

impl Sync for ProvedExecution