1
2
3
4
5
6
7
pub struct RouteContext {
    // "/name/:id"
    pub declared_route: String,

    // "app/name/:id"
    pub total_route: String,
}