Struct ethers::types::TransactionTrace
source · pub struct TransactionTrace {
pub trace_address: Vec<usize, Global>,
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, Global>Trace address
subtraces: usizeSubtraces
action: ActionAction
action_type: ActionTypeAction 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<TransactionTrace, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<TransactionTrace, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<TransactionTrace> for TransactionTrace
impl PartialEq<TransactionTrace> for TransactionTrace
source§fn eq(&self, other: &TransactionTrace) -> bool
fn eq(&self, other: &TransactionTrace) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TransactionTrace
impl Serialize for TransactionTrace
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for TransactionTrace
impl StructuralEq for TransactionTrace
impl StructuralPartialEq for TransactionTrace
Auto Trait Implementations§
impl RefUnwindSafe for TransactionTrace
impl Send for TransactionTrace
impl Sync for TransactionTrace
impl Unpin for TransactionTrace
impl UnwindSafe for TransactionTrace
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.