camel-endpoint 0.28.0

Endpoint abstractions for rust-camel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// `pattern` is only valid on fields of type `Vec<(String, String)>`.
use camel_endpoint_macros::UriConfig;

#[derive(UriConfig)]
#[uri_scheme = "bad"]
#[allow(dead_code)]
struct BadConfig {
    path: String,
    #[uri_param(pattern = "param.")]
    bad: Vec<String>,
}

fn main() {}