Type Alias URLSearchParams

Source
pub type URLSearchParams = HashMap<String, String>;
Expand description

The URLSearchParams type alias represents a collection of URL parameters parsed from an HTTP request’s query string. It is implemented as a HashMap<String, String> where keys are parameter names, and values are parameter values.

Aliased Type§

pub struct URLSearchParams { /* private fields */ }