pub struct SimulateTransactionResult {
pub txn_result: Value,
pub app_budget_consumed: Option<i64>,
pub logic_sig_budget_consumed: Option<i64>,
pub exec_trace: Option<SimulationTransactionExecTrace>,
pub unnamed_resources_accessed: Option<SimulateUnnamedResourcesAccessed>,
pub fixed_signer: Option<String>,
}
Fields§
§txn_result: Value
§app_budget_consumed: Option<i64>
§logic_sig_budget_consumed: Option<i64>
§exec_trace: Option<SimulationTransactionExecTrace>
§unnamed_resources_accessed: Option<SimulateUnnamedResourcesAccessed>
§fixed_signer: Option<String>
Trait Implementations§
Source§impl Clone for SimulateTransactionResult
impl Clone for SimulateTransactionResult
Source§fn clone(&self) -> SimulateTransactionResult
fn clone(&self) -> SimulateTransactionResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SimulateTransactionResult
impl Debug for SimulateTransactionResult
Source§impl Default for SimulateTransactionResult
impl Default for SimulateTransactionResult
Source§fn default() -> SimulateTransactionResult
fn default() -> SimulateTransactionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimulateTransactionResult
impl<'de> Deserialize<'de> for SimulateTransactionResult
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
impl StructuralPartialEq for SimulateTransactionResult
Auto Trait Implementations§
impl Freeze for SimulateTransactionResult
impl RefUnwindSafe for SimulateTransactionResult
impl Send for SimulateTransactionResult
impl Sync for SimulateTransactionResult
impl Unpin for SimulateTransactionResult
impl UnwindSafe for SimulateTransactionResult
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