1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
pub trait GetByKey<Key, Value> {
fn get(k: &Key) -> Value;
}
#[macro_export]
macro_rules! parameter_type_with_key {
(
pub $name:ident: |$k:ident: $key:ty| -> $value:ty $body:block;
) => {
pub struct $name;
impl $crate::get_by_key::GetByKey<$key, $value> for $name {
fn get($k: &$key) -> $value {
$body
}
}
};
}
#[cfg(test)]
mod tests {
use super::*;
parameter_type_with_key! {
pub Test: |k: u32| -> u32 {
match k {
1 => 1,
_ => 2,
}
};
}
#[test]
fn get_by_key_should_work() {
assert_eq!(Test::get(&1), 1);
assert_eq!(Test::get(&2), 2);
assert_eq!(Test::get(&3), 2);
}
}