Struct eosio_client_api::api_types::ActionTrace[][src]

pub struct ActionTrace {
    pub account_ram_deltas: Vec<AccountRamDelta>,
    pub console: Option<String>,
    pub action_ordinal: isize,
    pub receipt: ActionReceipt,
    pub act: ActionACT,
    pub context_free: bool,
    pub producer_block_id: Option<String>,
    pub except: Option<String>,
    pub trx_id: String,
    pub block_num: usize,
    pub error_code: Option<String>,
    pub block_time: DateTime<Utc>,
    pub closest_unnotified_ancestor_action_ordinal: usize,
    pub elapsed: usize,
    pub receiver: String,
    pub return_value: Option<String>,
}

Fields

account_ram_deltas: Vec<AccountRamDelta>console: Option<String>action_ordinal: isizereceipt: ActionReceiptact: ActionACTcontext_free: boolproducer_block_id: Option<String>except: Option<String>trx_id: Stringblock_num: usizeerror_code: Option<String>block_time: DateTime<Utc>closest_unnotified_ancestor_action_ordinal: usizeelapsed: usizereceiver: Stringreturn_value: Option<String>

Trait Implementations

impl Debug for ActionTrace[src]

impl<'de> Deserialize<'de> for ActionTrace[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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>,