pub struct ProcessedTransaction {
pub id: String,
pub block_num: u64,
pub block_time: String,
pub receipt: ProcessedTransactionReceipt,
pub elapsed: u64,
pub except: Option<SendTransactionResponseError>,
pub net_usage: u32,
pub scheduled: bool,
pub action_traces: Vec<ActionTrace>,
pub account_ram_delta: Option<AccountRamDelta>,
}
Fields§
§id: String
§block_num: u64
§block_time: String
§receipt: ProcessedTransactionReceipt
§elapsed: u64
§except: Option<SendTransactionResponseError>
§net_usage: u32
§scheduled: bool
§action_traces: Vec<ActionTrace>
§account_ram_delta: Option<AccountRamDelta>
Trait Implementations§
Source§impl Debug for ProcessedTransaction
impl Debug for ProcessedTransaction
Source§impl<'de> Deserialize<'de> for ProcessedTransaction
impl<'de> Deserialize<'de> for ProcessedTransaction
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 ProcessedTransaction
impl RefUnwindSafe for ProcessedTransaction
impl Send for ProcessedTransaction
impl Sync for ProcessedTransaction
impl Unpin for ProcessedTransaction
impl UnwindSafe for ProcessedTransaction
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