pub trait Reportable {
    fn status(&self) -> String;
fn records(&self) -> &Vec<ModelRecord>; }
Expand description

The additional status and record-keeping methods of Reportable provide improved simulation reasoning, reporting, and debugging, but do not impact simulation execution or results.

Required methods

Implementors