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>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<'a> DictionaryStore<'a> for Dictionary

source§

impl<'a> DictionaryStore<'a> for UserDictionary

Implementors§

source§

impl<'a, T> DictionaryStore<'a> for Twhere T: AsRef<dyn DictionaryStore<'a>>,