Enum ethcore::state::ProvedExecution  [−][src]
pub enum ProvedExecution {
    BadProof,
    Failed(ExecutionError),
    Complete(Executed),
}Return type of proof validity check.
Variants
BadProofProof wasn't enough to complete execution.
Failed(ExecutionError)The transaction failed, but not due to a bad proof.
Complete(Executed)The transaction successfully completd with the given proof.
Trait Implementations
impl Debug for ProvedExecution[src] 
impl Debug for ProvedExecutionfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for ProvedExecution[src] 
impl Clone for ProvedExecutionfn clone(&self) -> ProvedExecution[src] 
fn clone(&self) -> ProvedExecutionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for ProvedExecution
impl Send for ProvedExecutionimpl Sync for ProvedExecution
impl Sync for ProvedExecution