pub type CallManyTraceResult = Result<(Vec<TraceResults>, Vec<(TransactionRequest, HashSet<TraceType>)>), (Error, Vec<(TransactionRequest, HashSet<TraceType>)>)>;
Expand description
A type representing the result of calling trace_call_many
method.
Aliased Type§
pub enum CallManyTraceResult {
Ok((Vec<TraceResults>, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>)),
Err((Error, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>)),
}
Variants§
Ok((Vec<TraceResults>, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>))
Contains the success value
Err((Error, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>))
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.