Skip to main content

Producer

Trait Producer 

Source
pub trait Producer {
    // Required method
    fn produce(&self) -> Report;
}
Expand description

A producer of reports. Implement this on your harness type to integrate with the dev-* suite.

Required Methods§

Source

fn produce(&self) -> Report

Run the producer and return a finalized report.

Implementors§