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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
use askama::Template;
#[derive(Template)]
#[template(source = "{{ func(value) }}", ext = "txt")]
struct OneFunction {
func: fn(&i32) -> i32,
value: i32,
}
#[test]
fn test_one_func() {
let t = OneFunction {
func: |&i| 2 * i,
value: 123,
};
assert_eq!(t.render().unwrap(), "246");
}
#[derive(Template)]
#[template(source = "{{ self.func(value) }}", ext = "txt")]
struct OneFunctionSelf {
value: i32,
}
impl OneFunctionSelf {
fn func(&self, i: &i32) -> i32 {
2 * i
}
}
#[test]
fn test_one_func_self() {
let t = OneFunctionSelf { value: 123 };
assert_eq!(t.render().unwrap(), "246");
}
#[derive(Template)]
#[template(source = "{{ func[index](value) }}", ext = "txt")]
struct OneFunctionIndex<'a> {
func: &'a [fn(&i32) -> i32],
value: i32,
index: usize,
}
#[test]
fn test_one_func_index() {
let t = OneFunctionIndex {
func: &[|_| panic!(), |&i| 2 * i, |_| panic!(), |_| panic!()],
value: 123,
index: 1,
};
assert_eq!(t.render().unwrap(), "246");
}
struct AddToGetAFunction;
impl std::ops::Add<usize> for &AddToGetAFunction {
type Output = fn(&i32) -> i32;
fn add(self, rhs: usize) -> Self::Output {
assert_eq!(rhs, 1);
|&i| 2 * i
}
}
#[derive(Template)]
#[template(source = "{{ (func + index)(value) }}", ext = "txt")]
struct OneFunctionBinop<'a> {
func: &'a AddToGetAFunction,
value: i32,
index: usize,
}
#[test]
fn test_one_func_binop() {
let t = OneFunctionBinop {
func: &AddToGetAFunction,
value: 123,
index: 1,
};
assert_eq!(t.render().unwrap(), "246");
}
|