Type Alias reth_rpc_api_testing_util::trace::TraceFilterResult

source ·
pub type TraceFilterResult = Result<(Vec<LocalizedTransactionTrace>, TraceFilter), (Error, TraceFilter)>;
Expand description

Represents a result type for the trace_filter stream extension.

Aliased Type§

enum TraceFilterResult {
    Ok((Vec<LocalizedTransactionTrace>, TraceFilter)),
    Err((Error, TraceFilter)),
}

Variants§

§1.0.0

Ok((Vec<LocalizedTransactionTrace>, TraceFilter))

Contains the success value

§1.0.0

Err((Error, TraceFilter))

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: 184 bytes

Size for each variant:

  • Ok: 144 bytes
  • Err: 176 bytes