pub trait Producer { // Required method fn produce(&self) -> Report; }
A producer of reports. Implement this on your harness type to integrate with the dev-* suite.
Run the producer and return a finalized report.