pub struct TransactionTrace {
pub trace_address: Vec<usize>,
pub subtraces: usize,
pub action: Action,
pub action_type: ActionType,
pub result: Option<Res>,
pub error: Option<String>,
}
Expand description
Trace
Fields§
§trace_address: Vec<usize>
Trace address
subtraces: usize
Subtraces
action: Action
Action
action_type: ActionType
Action Type
result: Option<Res>
Result
error: Option<String>
Error
Trait Implementations§
Source§impl Clone for TransactionTrace
impl Clone for TransactionTrace
Source§fn clone(&self) -> TransactionTrace
fn clone(&self) -> TransactionTrace
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 TransactionTrace
impl Debug for TransactionTrace
Source§impl<'de> Deserialize<'de> for TransactionTrace
impl<'de> Deserialize<'de> for TransactionTrace
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
Source§impl PartialEq for TransactionTrace
impl PartialEq for TransactionTrace
Source§impl Serialize for TransactionTrace
impl Serialize for TransactionTrace
impl StructuralPartialEq for TransactionTrace
Auto Trait Implementations§
impl Freeze for TransactionTrace
impl RefUnwindSafe for TransactionTrace
impl Send for TransactionTrace
impl Sync for TransactionTrace
impl Unpin for TransactionTrace
impl UnwindSafe for TransactionTrace
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