pub type SimulationBorrow<'a, Info> = GenericSimulationBorrow<'a, Info, &'a <Info as SimulationInfo>::State>;Expand description
Represents a single immutable simulation.
Aliased Type§
struct SimulationBorrow<'a, Info> {
pub state: &'a <Info as SimulationInfo>::State,
/* private fields */
}Fields§
§state: &'a <Info as SimulationInfo>::StateThe referenced simulation state.