(_: &dyn RawTable)
| 99 | // Make sure that `RawTable` remains object safe. |
| 100 | #[allow(unused)] |
| 101 | fn assert_raw_table_obj_safe(_: &dyn RawTable) {} |
| 102 | |
| 103 | /// Typed database table. |
| 104 | pub trait Table: RawTable + Sized + From<rocksdb::DB> { |
nothing calls this directly
no outgoing calls
no test coverage detected