How can I bind PathParam to Struct? Thanks! like, request URI is `hello/:id`, I wanna bind `id` to Struct ``` type HelloRequest struct { Id uint64 `json:"id,omitempty"` } ```