Macro push_context

Source
macro_rules! push_context {
    ( $( $key:expr => $val:expr ),* $(,)? ) => { ... };
}
Expand description

Push a new context map onto the stack. Usage: push_context! { “key1” => val1, “key2” => val2 }