pub fn bin_param_locations(
query: &AnalyzedQuery,
http: &HttpAnnotations,
) -> BTreeMap<String, HttpParamBinding>Expand description
Decide where each AnalyzedParam is sourced from, falling back from
explicit @http_param overrides to inference rules:
- explicit binding wins,
- name appears as
{name}in path →path, - GET/DELETE →
query, - POST/PUT/PATCH →
body.