[][src]Macro filmreel::to

macro_rules! to {
    ({$( $key: expr => $val: expr ),*}) => { ... };
}

Constructs a set of read instructions from strings meant associated with variables present in the Cut Register

This code runs with edition 2018
use filmreel::to;

let write_instructions = to!({
    "SESSION_ID" => ".response.body.session_id",
    "DATETIME" => ".response.body.timestamp"});

"from" key