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§
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: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 80 bytes
Size for each variant:
Ok
: 56 bytesErr
: 80 bytes