(key: K)
| 74 | } |
| 75 | |
| 76 | pub(crate) fn key_string<K: AsRef<[u8]>>(key: K) -> String { |
| 77 | String::from_utf8(key.as_ref().to_vec()).unwrap_or_else(|_| "UNKNOWN".into()) |
| 78 | } |
| 79 | |
| 80 | fn path(database_name: &str) -> PathBuf { |
| 81 | Path::new(PATH).join(database_name) |
nothing calls this directly
no outgoing calls
no test coverage detected