Type Alias ResultVecAndState
pub type ResultVecAndState<R, S> = ExecResultAndState<Vec<R>, S>;
Expand description
Tuple containing multiple execution results and state.
Aliased Type§
pub struct ResultVecAndState<R, S> {
pub result: Vec<R>,
pub state: S,
}
Fields§
§result: Vec<R>
Execution result
state: S
Output State.
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.