pub trait RecordedAgentSet<R> {
// Required method
fn take_records(&mut self) -> Vec<Vec<R>>;
}Expand description
Take ownership of time-series data from a set of agents
Returns a time series of vectors of records across all the agents in the set.