pub type Captures<'a> = HashMap<&'a str, String>;
Expand description
Alias of HashMap<&'a str, String>
that represent strings captured from a route.
Captures contain keys corresponding to named match sections, and values containing the content captured by those sections.
Aliased Typeยง
struct Captures<'a> { /* private fields */ }