[][src]Type Definition yew_router_route_parser::Captures

type Captures<'a> = HashMap<&'a str, String>;

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.