Enum ethcore::trace::trace::Res [] [src]

pub enum Res {
    Call(CallResult),
    Create(CreateResult),
    FailedCall(Error),
    FailedCreate(Error),
    None,
}

The result of the performed action.

Variants

Successful call action result.

Successful create action result.

Failed call.

Failed create.

None

Methods

impl Res
[src]

Returns result bloom.

Did this call fail?

Trait Implementations

impl Debug for Res
[src]

Formats the value using the given formatter.

impl Clone for Res
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Res
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Encodable for Res
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for Res
[src]

Decode a value from RLP bytes