Macro idict
macro_rules! idict {
($($key:expr => $value:expr),* $(,)?) => { ... };
}Expand description
Inferred dict: constructs Dictionary literals without ambiguity.
See dict! for docs and examples.
macro_rules! idict {
($($key:expr => $value:expr),* $(,)?) => { ... };
}Inferred dict: constructs Dictionary literals without ambiguity.
See dict! for docs and examples.