StrLookupDump

Trait StrLookupDump 

Source
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§

Source

fn dump<W: Write>(writer: &mut W)

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§

Source§

impl<KeyType, StoreType, U> StrLookupDump for U
where 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