pub struct ApplyOutcome<T, V> {
    pub receipt: TypedReceipt,
    pub output: Bytes,
    pub trace: Vec<T>,
    pub vm_trace: Option<V>,
}
Expand description

Used to return information about an State::apply operation.

Fields

receipt: TypedReceipt

The receipt for the applied transaction.

output: Bytes

The output of the applied transaction.

trace: Vec<T>

The trace for the applied transaction, empty if tracing was not produced.

vm_trace: Option<V>

The VM trace for the applied transaction, None if tracing was not produced.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.