Macro askama_context_new

Source
macro_rules! askama_context_new {
    ( $_context_type : ty, $_extensions : expr ) => { ... };
    ( { type : $_context_type : ty }, $_extensions : expr ) => { ... };
    ( { type : $_context_type : ty, json : $_context_path : literal }, $_extensions : expr) => { ... };
    ( { type : $_context_type : ty, toml : $_context_path : literal }, $_extensions : expr) => { ... };
    ( { type : $_context_type : ty, yaml : $_context_path : literal }, $_extensions : expr) => { ... };
    ( { type : $_context_type : ty, deserialize : ( $_context_encoding : literal, $_context_path : literal ) }, $_extensions : expr ) => { ... };
    ( { type : $_context_type : ty, (deserialize, embedded) : ( $_context_encoding : literal, $_context_path : literal ) }, $_extensions : expr ) => { ... };
    ( { type : $_context_type : ty, (deserialize, dynamic) : ( $_context_encoding : literal, $_context_path : literal ) }, $_extensions : expr ) => { ... };
}