(&self, f: &mut std::fmt::Formatter<'_>)
| 29 | |
| 30 | impl std::fmt::Debug for ArrayEngineConfig { |
| 31 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 32 | f.debug_struct("ArrayEngineConfig") |
| 33 | .field("root", &self.root) |
| 34 | .field("flush_cell_threshold", &self.flush_cell_threshold) |
| 35 | .field("kek", &self.kek.is_some()) |
| 36 | .finish() |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | impl ArrayEngineConfig { |