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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*!
Traits,types,`TypeFn_`s related to ConstValue construction.
*/
use *;
use *;
use ;
/// Trait used by the `Construct` type alias to construct a fully initialized version of a value.
///
/// This is automatically implemented by the `TypeLevel` derive macro.
/// Constructs a fully initialized value,initializing all the fields with FVPairs.
///
/// `FVPairs` example:tlist![ (field::x,U10), (field::y,U5) ] .
///
/// For examples using the type alias equivalent look [here](./type.Construct.html)
/**
Initializes a ConstValue,ensuring that every field is initialized,
otherwise producing a compile-time error which mentions the fields that weren't initialized.
# Usage
Usage of this type alias takes this form:
```text
Construct< <constructor> , (
$(
<field_accessor> = <field_value> ,
)*
)>
```
You need to use a type-list if you have more than 16 elements,
or are writing a macro which allows any ammount of elements:
```text
Construct< <constructor> , tlist!(
$(
<field_accessor> = <field_value>,
)*
))
```
\<constructor> is a type implementing
type_level_values::initialization::InitializationValues.
Valid constructors are:
- structs:\<DerivingType\>Type / \<DerivingTyoe\>_Uninit.
- variants:\<VariantName\>_Uninit.
\<field_accessor> is the field accessor in the `type_level_<deriving_type>::fields` submodule.
\<field_value> is the value being assigned to the field.
# Example 1:Constructing a struct with only public fields.
```
# #[macro_use]
# extern crate derive_type_level;
# #[macro_use]
# extern crate type_level_values;
# use type_level_values::prelude::*;
#[derive(TypeLevel)]
#[typelevel(reexport(Struct))]
pub struct Rectangle{
pub x:u32,
pub y:u32,
pub w:u32,
pub h:u32,
}
use self::type_level_Rectangle::fields;
fn main(){
let _:Construct<RectangleType,(
(fields::x,U0),
(fields::y,U0),
(fields::w,U0),
(fields::h,U0),
)>;
}
```
# Example 2:Constructing a struct with private fields.
Constructing a struct with private fields requires that one uses the
\<DerivingType>_Uninit constructor,
\<DerivingType\>Type is not a constructor if any field is more private than the struct.
```
# #[macro_use]
# extern crate derive_type_level;
# #[macro_use]
# extern crate type_level_values;
# use type_level_values::prelude::*;
#[derive(TypeLevel)]
#[typelevel(reexport(Variants))]
pub enum Player{
Player0,
Player1,
}
#[derive(TypeLevel)]
#[typelevel(
reexport(Struct),
//print_derive,
)]
pub struct Game{
points:u32,
winner:Option<Player>,
}
use self::type_level_Game::fields;
fn main(){
let _:Construct<Game_Uninit,(
(fields::points , U10),
(fields::winner , None_),
)>;
}
```
# Example 3:Constructing enum variants.
```
# #[macro_use]
# extern crate derive_type_level;
# #[macro_use]
# extern crate type_level_values;
# use type_level_values::prelude::*;
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, TypeLevel)]
#[typelevel(items(IntoConstType(NoImpls)), reexport(Variants,Discriminants, Traits),)]
// #[typelevel(skip_derive)]
// #[typelevel(print_derive)]
pub enum Operation {
Transfer { type_: () },
Loop {
repetitions: u32,
sequence: Vec<Operation>,
},
Close,
}
use self::type_level_Operation::fields;
fn main(){
let transfer:Construct<Transfer_Uninit,(
(fields::type_ , u32),
)>=Transfer::MTVAL;
let _:Transfer<u32>=transfer;
let _:Construct<Loop_Uninit,(
(fields::repetitions , U10),
(fields::sequence , tlist![
Transfer< () >,
Transfer< Vec<u64> >,
]),
)>;
let _:Construct< Close_Uninit ,()>;
}
```
*/
pub type Construct<Type, FVPairs> = Output;
/// The state of initialization of a field.
type_fn!
type_fn!