(&self, f: &mut fmt::Formatter<'_>)
| 309 | |
| 310 | impl<T: Table> fmt::Debug for InsertionBatch<'_, T> { |
| 311 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 312 | write!( |
| 313 | f, |
| 314 | "InsertionBatch(<{} records into {}>)", |
| 315 | self.1.len(), |
| 316 | std::any::type_name::<T>(), |
| 317 | ) |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | /// Type that can act as the key for a [`Table`]. |
nothing calls this directly
no outgoing calls
no test coverage detected