(self, suite: &'static str)
| 1786 | |
| 1787 | impl BenchmarkSuiteFilter { |
| 1788 | fn includes(self, suite: &'static str) -> bool { |
| 1789 | matches!( |
| 1790 | (self, suite), |
| 1791 | (Self::All, _) | (Self::Rtt, "rtt") | (Self::Speed, "speed") |
| 1792 | ) |
| 1793 | } |
| 1794 | } |
| 1795 | |
| 1796 | impl BenchmarkModeFilter { |
no outgoing calls
no test coverage detected