macro_rules! http_post {
($method_name:ident, $path:literal, $request:ident: $request_type:ty, $return_type:ty) => { ... };
($method_name:ident, $path_fmt:literal, $param:ident: $param_type:ty, $request:ident: $request_type:ty, $return_type:ty) => { ... };
}Expand description
Macro to generate HTTP POST method wrappers