| 216 | |
| 217 | #[derive(Deserialize, Serialize, Debug, Clone, PartialEq)] |
| 218 | pub enum BenchmarkReportStatus { |
| 219 | Improvement, |
| 220 | Missing, |
| 221 | New, |
| 222 | NoChange, |
| 223 | Regression, |
| 224 | } |
| 225 | |
| 226 | impl Display for BenchmarkReportStatus { |
| 227 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected