macro_rules! key_value_pairs {
    { $($key:expr => $value:expr),* $(,)? } => { ... };
}
Expand description

A key-value pairs, where the keys and values must implement ToString.