pub type TraceGetResult = Result<(Option<LocalizedTransactionTrace>, B256, Vec<Index>), (Error, B256, Vec<Index>)>;
Expand description
Result type for the trace_get
method that also captures the requested transaction hash and
index.
Aliased Type§
pub enum TraceGetResult {
Ok((Option<LocalizedTransactionTrace>, FixedBytes<32>, Vec<Index>)),
Err((Error, FixedBytes<32>, Vec<Index>)),
}
Variants§
Ok((Option<LocalizedTransactionTrace>, FixedBytes<32>, Vec<Index>))
Contains the success value
Err((Error, FixedBytes<32>, Vec<Index>))
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.