macro_rules! string_table { ($( $key:expr => $value:expr ),* $(,)?) => { ... }; }
A helper macro to easily create a StringTable.
let table = string_table! { "hello" => "world!", };