| 65 | } |
| 66 | |
| 67 | pub trait BenchmarkCase: Clone + PartialEq + Sized + 'static { |
| 68 | const KIND: DataKind; |
| 69 | |
| 70 | fn create() -> Self; |
| 71 | } |
| 72 | |
| 73 | pub trait SchemaMismatchCase: BenchmarkCase { |
| 74 | type Read: ForyValueSerializer + ForyDefault + 'static; |
nothing calls this directly
no outgoing calls
no test coverage detected