dict

Macro dict 

Source
macro_rules! dict {
    () => { ... };
    ( $( $key:tt : $value:expr ),+ $(,)? ) => { ... };
}
Expand description

Construct a nvim_oxi::Dictionary from key-value pairs, supporting nested dict! usage.

Keys can be:

Values: any type that implements Into<nvim_oxi::Object>