pub fn entries_to_string<'a, K, V>(
    entries: impl Iterator<Item = Entry<'a, K, V>>
) -> Result<String, Error>
where K: 'a + Debug, V: 'a + Debug,