Struct executive_state::ApplyOutcome[][src]

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

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

Fields

receipt: Receipt

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

impl<T, V> RefUnwindSafe for ApplyOutcome<T, V> where
    T: RefUnwindSafe,
    V: RefUnwindSafe

impl<T, V> Send for ApplyOutcome<T, V> where
    T: Send,
    V: Send

impl<T, V> Sync for ApplyOutcome<T, V> where
    T: Sync,
    V: Sync

impl<T, V> Unpin for ApplyOutcome<T, V> where
    T: Unpin,
    V: Unpin

impl<T, V> UnwindSafe for ApplyOutcome<T, V> where
    T: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,