pub trait StrLookupDump {
// Required method
fn dump<W: Write>(writer: &mut W);
}Expand description
Dump the (key,value) pairs of the StrLookupHashMap.
Can be useful to keep the corresponding values of Id when generate data without str
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<KeyType, StoreType, U> StrLookupDump for Uwhere
KeyType: Display + Eq + PartialEq + Hash + FromCityHash + Clone + Copy + 'static,
StoreType: StaticStrStore,
U: StrLookupHashMap<Key = KeyType, StrStore = StoreType>,
Implement the dump of the StrLookup for all type than implement StrLookupHashMap