Macro jsonrpc_client_core::expand_params [] [src]

macro_rules! expand_params {
    () => { ... };
    ($($arg_name:ident,)+) => { ... };
}

Expands a variable list of parameters into its serializable form. Is needed to make the params of a nullary method [] instead of () and thus make sure it serializes to [] instead of null.