pub trait DictionaryStore<'a> {
// Required methods
fn get_bytes(&'a self, id: u32) -> JPreprocessResult<&'a [u8]>;
fn identifier(&self) -> Option<String>;
fn serlializer_hint(&self) -> Box<dyn DictionarySerializer>;
}pub trait DictionaryStore<'a> {
// Required methods
fn get_bytes(&'a self, id: u32) -> JPreprocessResult<&'a [u8]>;
fn identifier(&self) -> Option<String>;
fn serlializer_hint(&self) -> Box<dyn DictionarySerializer>;
}