Type Alias ResultVecAndState

Source
pub type ResultVecAndState<R, S> = ResultAndState<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.