Type Alias reth_rpc_api_testing_util::trace::CallManyTraceResult

source ·
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>)>)),
    Err((Error, Vec<(TransactionRequest, HashSet<TraceType>)>)),
}

Variants§

§1.0.0

Ok((Vec<TraceResults>, Vec<(TransactionRequest, HashSet<TraceType>)>))

Contains the success value

§1.0.0

Err((Error, Vec<(TransactionRequest, HashSet<TraceType>)>))

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 bytes
  • Err: 80 bytes