1 2 3 4 5 6 7 8 9 10 11 12 13
// `pattern` separator must end with `.`. use camel_endpoint_macros::UriConfig; #[derive(UriConfig)] #[uri_scheme = "bad"] #[allow(dead_code)] struct BadConfig { path: String, #[uri_param(pattern = "param/")] bad: Vec<(String, String)>, } fn main() {}