CallManyTraceResult

Type Alias 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§

pub enum CallManyTraceResult {
    Ok((Vec<TraceResults>, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>)),
    Err((Error, Vec<(TransactionRequest, HashSet<TraceType, RandomState>)>)),
}

Variants§

§1.0.0

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

Contains the success value

§1.0.0

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.