camel-endpoint 0.28.0

Endpoint abstractions for rust-camel
Documentation
1
2
3
4
5
6
7
8
9
10
// Missing #[uri_scheme] attribute is a compile error.
use camel_endpoint_macros::UriConfig;

#[derive(UriConfig)]
#[allow(dead_code)]
struct MissingScheme {
    path: String,
}

fn main() {}