pub type TraceCallResult = Result<TraceResults, (Error, TraceCallRequest)>;
Expand description
Represents the result of a single trace call.
Aliased Type§
pub enum TraceCallResult {
Ok(TraceResults),
Err((Error, TraceCallRequest)),
}
Variants§
Ok(TraceResults)
Contains the success value
Err((Error, TraceCallRequest))
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.