use std::borrow::Cow; use heed::BoxedError; use obkv::{KvReaderU16, KvWriterU16}; pub struct ObkvCodec; impl<'a> heed::BytesDecode<'a> for ObkvCodec { type DItem = KvReaderU16<'a>; fn bytes_decode(bytes: &'a [u8]) -> Result { Ok(KvReaderU16::new(bytes)) } } impl heed::BytesEncode<'_> for ObkvCodec { type EItem = KvWriterU16>; fn bytes_encode(item: &Self::EItem) -> Result, BoxedError> { item.clone().into_inner().map(Cow::Owned).map_err(Into::into) } }