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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
use crateSetting;
/*
currently the types being added are the types that derive serde Deserialize per version 1.0.192
https://docs.rs/serde/latest/serde/de/trait.Deserialize.html#
the types were obtained by doing a copy paste of the page above followed by multiple find and replace commands.
followed by commenting out any types that couldn't easily be added for the following reasons
types not implemented:
types that include any generic parameter. as #[cfg_attr(feature = "serde", typetag::serde)] can't be added.
types in rust unstable feature: !
types in std::sync::atomic as they don't implement PartialEq needed for DynEq
types that had some sort of lifetime error: str, std::path::Path, [u8], serde::de::IgnoredAny
*/
/*
impl Setting for !{}//Available on crate feature unstable only.
*/
//Available on crate features std or alloc only.{}
//Available on crate features std or alloc only.{}
//Available on crate feature std and (Unix or Windows) only.{}
//Available on crate features std or alloc only.{}
//Available on crate features std or alloc only.{}
/*
impl Setting for std::sync::atomic::AtomicBool{}//Available on crate feature // std and target_has_atomic="8"
impl Setting for std::sync::atomic::AtomicI8{}//Available on crate feature // std and target_has_atomic="8"
impl Setting for std::sync::atomic::AtomicI16{}//Available on crate feature // std and target_has_atomic="16"
impl Setting for std::sync::atomic::AtomicI32{}//Available on crate feature // std and target_has_atomic="32"
impl Setting for std::sync::atomic::AtomicI64{}//Available on crate feature // std and target_has_atomic="64"
impl Setting for std::sync::atomic::AtomicIsize{}//Available on crate feature // std and target_has_atomic="ptr"
impl Setting for std::sync::atomic::AtomicU8{}//Available on crate feature // std and target_has_atomic="8"
impl Setting for std::sync::atomic::AtomicU16{}//Available on crate feature // std and target_has_atomic="16"
impl Setting for std::sync::atomic::AtomicU32{}//Available on crate feature // std and target_has_atomic="32"
impl Setting for std::sync::atomic::AtomicU64{}//Available on crate feature // std and target_has_atomic="64"
impl Setting for std::sync::atomic::AtomicUsize{}//Available on crate feature // std and target_has_atomic="ptr"
*/
//Available on crate feature std and (Unix or Windows) only.{}
/*
impl<'a, T> Setting for std::borrow::Cow<'a, T>
where
T: ToOwned + ?Sized + Setting,// added +Setting
T::Owned: Setting,{}//Available on crate features std or alloc only.{}
impl<Idx> Setting for std::ops::Range<Idx>
where
Idx: Setting,{}
impl<Idx> Setting for std::ops::RangeFrom<Idx>
where
Idx: Setting,{}
impl<Idx> Setting for std::ops::RangeInclusive<Idx>
where
Idx: Setting,{}
impl<Idx> Setting for std::ops::RangeTo<Idx>
where
Idx: Setting,{}
impl<K, V> Setting for std::collections::BTreeMap<K, V>
where
K: Setting + Ord,
V: Setting,{}//Available on crate features std or alloc only.{}
impl<K, V, S> Setting for HashMap<K, V, S>
where
K: Setting + Eq + std::hash::Hash,
V: Setting,
S: std::hash::BuildHasher + Default,{}
impl<T0: Setting + Clone> Setting for (T0,){}
impl<T0: Setting, T1: Setting> Setting for (T0, T1){}
impl<T0: Setting, T1: Setting, T2: Setting> Setting for (T0, T1, T2){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting> Setting for (T0, T1, T2, T3){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting> Setting for (T0, T1, T2, T3, T4){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting> Setting for (T0, T1, T2, T3, T4, T5){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting, T11: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting, T11: Setting, T12: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting, T11: Setting, T12: Setting, T13: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting, T11: Setting, T12: Setting, T13: Setting, T14: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14){}
impl<T0: Setting, T1: Setting, T2: Setting, T3: Setting, T4: Setting, T5: Setting, T6: Setting, T7: Setting, T8: Setting, T9: Setting, T10: Setting, T11: Setting, T12: Setting, T13: Setting, T14: Setting, T15: Setting> Setting for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15){}
impl<T> Setting for std::ops::Bound<T>
where
T: Setting,{}
impl<T> Setting for Option<T>
where
T: Setting,{}
impl<T> Setting for [T; 0]{}
impl<T> Setting for [T; 1]
where
T: Setting,{}
impl<T> Setting for [T; 2]
where
T: Setting,{}
impl<T> Setting for [T; 3]
where
T: Setting,{}
impl<T> Setting for [T; 4]
where
T: Setting,{}
impl<T> Setting for [T; 5]
where
T: Setting,{}
impl<T> Setting for [T; 6]
where
T: Setting,{}
impl<T> Setting for [T; 7]
where
T: Setting,{}
impl<T> Setting for [T; 8]
where
T: Setting,{}
impl<T> Setting for [T; 9]
where
T: Setting,{}
impl<T> Setting for [T; 10]
where
T: Setting,{}
impl<T> Setting for [T; 11]
where
T: Setting,{}
impl<T> Setting for [T; 12]
where
T: Setting,{}
impl<T> Setting for [T; 13]
where
T: Setting,{}
impl<T> Setting for [T; 14]
where
T: Setting,{}
impl<T> Setting for [T; 15]
where
T: Setting,{}
impl<T> Setting for [T; 16]
where
T: Setting,{}
impl<T> Setting for [T; 17]
where
T: Setting,{}
impl<T> Setting for [T; 18]
where
T: Setting,{}
impl<T> Setting for [T; 19]
where
T: Setting,{}
impl<T> Setting for [T; 20]
where
T: Setting,{}
impl<T> Setting for [T; 21]
where
T: Setting,{}
impl<T> Setting for [T; 22]
where
T: Setting,{}
impl<T> Setting for [T; 23]
where
T: Setting,{}
impl<T> Setting for [T; 24]
where
T: Setting,{}
impl<T> Setting for [T; 25]
where
T: Setting,{}
impl<T> Setting for [T; 26]
where
T: Setting,{}
impl<T> Setting for [T; 27]
where
T: Setting,{}
impl<T> Setting for [T; 28]
where
T: Setting,{}
impl<T> Setting for [T; 29]
where
T: Setting,{}
impl<T> Setting for [T; 30]
where
T: Setting,{}
impl<T> Setting for [T; 31]
where
T: Setting,{}
impl<T> Setting for [T; 32]
where
T: Setting,{}
impl<T> Setting for std::collections::BinaryHeap<T>
where
T: Setting + Ord,{}//Available on crate features std or alloc only.{}
impl<T> Setting for std::collections::BTreeSet<T>
where
T: Setting + Eq + Ord,{}//Available on crate features std or alloc only.{}
impl<T> Setting for std::collections::LinkedList<T>
where
T: Setting,{}//Available on crate features std or alloc only.{}
impl<T> Setting for std::collections::VecDeque<T>
where
T: Setting,{}//Available on crate features std or alloc only.{}
/*
impl<T> Setting for RcWeak<T>
where
T: Setting + ?Sized,{}//Available on crate feature // rc and (crate features std or alloc)
impl<T> Setting for ArcWeak<T>
where
T: Setting + ?Sized,{}//Available on crate feature // rc and (crate features std or alloc)
*/
impl<T> Setting for Vec<T>
where
T: Setting+ Clone,{}//Available on crate features std or alloc only.{}
impl<T> Setting for std::cell::Cell<T>
where
T: Setting + Copy,{}
impl<T> Setting for std::num::Wrapping<T>
where
T: Setting+ Clone,{}
impl<T, E> Setting for Result<T, E>
where
T: Setting,
E: Setting,{}
impl<T, S> Setting for HashSet<T, S>
where
T: Setting + Eq + std::hash::Hash,
S: std::hash::BuildHasher + Default,{}
impl<T: Setting> Setting for Box<[T]>{}//Available on crate features std or alloc only.{}
impl<T: Setting> Setting for Box<T>{}//Available on crate features std or alloc only.{}
impl<T: Setting> Setting for std::cell::RefCell<T>{}
impl<T: Setting> Setting for std::cmp::Reverse<T>{}
impl<T: Setting> Setting for std::sync::Mutex<T>{}
impl<T: Setting> Setting for std::sync::RwLock<T>{}
/*
impl<T: ?Sized> Setting for std::rc::Rc<T>
where
Box<T>: Setting,{}//Available on crate feature // rc and (crate features std or alloc)
impl<T: ?Sized> Setting for std::sync::Arc<T>
where
Box<T>: Setting,{}//Available on crate feature // rc and (crate features std or alloc)
*/
impl<T: ?Sized> Setting for std::marker::PhantomData<T>{}
*/
/*
impl<'de: 'a, 'a> Setting for &'a str{}
impl<'de: 'a, 'a> Setting for &'a std::path::Path{}
impl<'de: 'a, 'a> Setting for &'a [u8]{}
impl Setting for serde::de::IgnoredAny{}
*/
/**/