pub trait Stats: Display + ToCSV + 'static { }
Expand description

A trait implemented by the statistics of a pool

The types implementing Stats must be displayable in the terminal and must be convertible to CSV fields. However, note that at the moment some pools choose to produce empty CSV values for their statistics. Consequently, their statistics will not be available in the fuzz/stats/<id>/events.csv file written by fuzzcheck at the end of a fuzz test.

Some pools may choose not to display their statistics in the terminal.

Implementations on Foreign Types

Implementors