pub struct ActionTrace {Show 17 fields
pub action_ordinal: u32,
pub creator_action_ordinal: u32,
pub closest_unnotified_ancestor_action_ordinal: u32,
pub receipt: ActionReceipt,
pub receiver: Name,
pub act: Action,
pub context_free: bool,
pub elapsed: u64,
pub console: String,
pub trx_id: String,
pub block_num: u64,
pub block_time: String,
pub producer_block_id: Option<String>,
pub account_ram_deltas: Vec<AccountRamDelta>,
pub except: Option<String>,
pub error_code: Option<u32>,
pub return_value_hex_data: String,
}
Fields§
§action_ordinal: u32
§creator_action_ordinal: u32
§closest_unnotified_ancestor_action_ordinal: u32
§receipt: ActionReceipt
§receiver: Name
§act: Action
§context_free: bool
§elapsed: u64
§console: String
§trx_id: String
§block_num: u64
§block_time: String
§producer_block_id: Option<String>
§account_ram_deltas: Vec<AccountRamDelta>
§except: Option<String>
§error_code: Option<u32>
§return_value_hex_data: String
Trait Implementations§
Source§impl Debug for ActionTrace
impl Debug for ActionTrace
Source§impl<'de> Deserialize<'de> for ActionTrace
impl<'de> Deserialize<'de> for ActionTrace
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActionTrace
impl RefUnwindSafe for ActionTrace
impl Send for ActionTrace
impl Sync for ActionTrace
impl Unpin for ActionTrace
impl UnwindSafe for ActionTrace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more