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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
extern crate proc_macro;
use TokenStream;
use quote;
use ;
/*
This macro allows you to construct values in the heap in-place safely,
using the struct initialization syntax
Example usage:
let mut my_box = place_boxed!(
MyStruct{
member_1: 5,
member_array: [0; 100],
member_array2: [1, 2, 3],
}
)
Example codegen:
let mut my_box = {
let mut res = Box::<MyStruct>::new_uninit();
unsafe {
let ptr = res.as_mut_ptr();
(&raw mut (*ptr).member_1).write(5);
for i in 0..100 {
(&raw mut (*ptr).member_array[i]).write(0);
}
(&raw mut (*ptr).member_array2[0]).write(1);
(&raw mut (*ptr).member_array2[1]).write(2);
(&raw mut (*ptr).member_array2[2]).write(3);
res.assume_init()
}
}
*/