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
|
// SPDX-License-Identifier: Apache-2.0 OR MIT
// default #[pin_project], PinnedDrop, project_replace, !Unpin, and UnsafeUnpin without UnsafeUnpin impl are completely safe.
/// Testing default struct.
#[allow(clippy::exhaustive_structs)] // for the type itself
#[::pin_project::pin_project]
#[derive(Debug)]
pub struct DefaultStruct<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing named struct.
#[::pin_project::pin_project(
project = DefaultStructNamedProj,
project_ref = DefaultStructNamedProjRef,
)]
#[derive(Debug)]
#[allow(clippy::exhaustive_structs)] // for the type itself
pub struct DefaultStructNamed<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing default tuple struct.
#[::pin_project::pin_project]
#[allow(clippy::exhaustive_structs)] // for the type itself
#[derive(Debug)]
pub struct DefaultTupleStruct<T, U>(#[pin] pub T, pub U);
/// Testing named tuple struct.
#[::pin_project::pin_project(
project = DefaultTupleStructNamedProj,
project_ref = DefaultTupleStructNamedProjRef,
)]
#[allow(clippy::exhaustive_structs)] // for the type itself
#[derive(Debug)]
pub struct DefaultTupleStructNamed<T, U>(#[pin] pub T, pub U);
/// Testing enum.
#[allow(clippy::exhaustive_enums)] // for the type itself
#[::pin_project::pin_project(
project = DefaultEnumProj,
project_ref = DefaultEnumProjRef,
)]
#[derive(Debug)]
pub enum DefaultEnum<T, U> {
/// Struct variant.
Struct {
/// Pinned field.
#[pin]
pinned: T,
/// Unpinned field.
unpinned: U,
},
/// Tuple variant.
Tuple(#[pin] T, U),
/// Unit variant.
Unit,
}
/// Testing pinned drop struct.
#[allow(clippy::exhaustive_structs)] // for the type itself
#[::pin_project::pin_project(PinnedDrop)]
#[derive(Debug)]
pub struct PinnedDropStruct<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
#[::pin_project::pinned_drop]
impl<T, U> PinnedDrop for PinnedDropStruct<T, U> {
#[allow(clippy::absolute_paths)]
fn drop(self: ::pin_project::__private::Pin<&mut Self>) {}
}
/// Testing pinned drop tuple struct.
#[allow(clippy::exhaustive_structs)] // for the type itself
#[::pin_project::pin_project(PinnedDrop)]
#[derive(Debug)]
pub struct PinnedDropTupleStruct<T, U>(#[pin] pub T, pub U);
#[::pin_project::pinned_drop]
impl<T, U> PinnedDrop for PinnedDropTupleStruct<T, U> {
#[allow(clippy::absolute_paths)]
fn drop(self: ::pin_project::__private::Pin<&mut Self>) {}
}
/// Testing pinned drop enum.
#[allow(clippy::absolute_paths, clippy::exhaustive_enums)] // for the type itself
#[::pin_project::pin_project(
PinnedDrop,
project = PinnedDropEnumProj,
project_ref = PinnedDropEnumProjRef,
)]
#[derive(Debug)]
pub enum PinnedDropEnum<T: ::pin_project::__private::Unpin, U> {
/// Struct variant.
Struct {
/// Pinned field.
#[pin]
pinned: T,
/// Unpinned field.
unpinned: U,
},
/// Tuple variant.
Tuple(#[pin] T, U),
/// Unit variant.
Unit,
}
#[::pin_project::pinned_drop]
#[allow(clippy::absolute_paths)]
impl<T: ::pin_project::__private::Unpin, U> PinnedDrop for PinnedDropEnum<T, U> {
fn drop(self: ::pin_project::__private::Pin<&mut Self>) {}
}
/// Testing default struct with replace.
#[allow(clippy::exhaustive_structs)] // for the type itself
#[::pin_project::pin_project(project_replace)]
#[derive(Debug)]
pub struct ReplaceStruct<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing named struct with replace.
#[::pin_project::pin_project(
project = ReplaceStructNamedProj,
project_ref = ReplaceStructNamedProjRef,
project_replace = ReplaceStructNamedProjOwn,
)]
#[allow(clippy::exhaustive_structs)] // for the type itself
#[derive(Debug)]
pub struct ReplaceStructNamed<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing default struct with replace.
#[::pin_project::pin_project(project_replace)]
#[derive(Debug)]
#[allow(clippy::exhaustive_structs)] // for the type itself
pub struct ReplaceTupleStruct<T, U>(#[pin] pub T, pub U);
/// Testing named struct with replace.
#[::pin_project::pin_project(
project = ReplaceTupleStructNamedProj,
project_ref = ReplaceTupleStructNamedProjRef,
project_replace = ReplaceTupleStructNamedProjOwn,
)]
#[derive(Debug)]
#[allow(clippy::exhaustive_structs)] // for the type itself
pub struct ReplaceTupleStructNamed<T, U>(#[pin] pub T, pub U);
/// Testing enum with replace.
#[allow(clippy::exhaustive_enums)] // for the type itself
#[::pin_project::pin_project(
project = ReplaceEnumProj,
project_ref = ReplaceEnumProjRef,
project_replace = ReplaceEnumProjOwn,
)]
#[derive(Debug)]
pub enum ReplaceEnum<T, U> {
/// Struct variant.
Struct {
/// Pinned field.
#[pin]
pinned: T,
/// Unpinned field.
unpinned: U,
},
/// Tuple variant.
Tuple(#[pin] T, U),
/// Unit variant.
Unit,
}
/// Testing struct with unsafe `Unpin`.
#[::pin_project::pin_project(UnsafeUnpin)]
#[allow(clippy::exhaustive_structs)] // for the type itself
#[derive(Debug)]
pub struct UnsafeUnpinStruct<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing tuple struct with unsafe `Unpin`.
#[::pin_project::pin_project(UnsafeUnpin)]
#[allow(clippy::exhaustive_structs)] // for the type itself
#[derive(Debug)]
pub struct UnsafeUnpinTupleStruct<T, U>(#[pin] pub T, pub U);
/// Testing enum unsafe `Unpin`.
#[allow(clippy::exhaustive_enums)] // for the type itself
#[::pin_project::pin_project(
UnsafeUnpin,
project = UnsafeUnpinEnumProj,
project_ref = UnsafeUnpinEnumProjRef,
)]
#[derive(Debug)]
pub enum UnsafeUnpinEnum<T, U> {
/// Struct variant.
Struct {
/// Pinned field.
#[pin]
pinned: T,
/// Unpinned field.
unpinned: U,
},
/// Tuple variant.
Tuple(#[pin] T, U),
/// Unit variant.
Unit,
}
/// Testing struct with `!Unpin`.
#[::pin_project::pin_project(!Unpin)]
#[derive(Debug)]
#[allow(clippy::exhaustive_structs)] // for the type itself
pub struct NotUnpinStruct<T, U> {
/// Pinned field.
#[pin]
pub pinned: T,
/// Unpinned field.
pub unpinned: U,
}
/// Testing tuple struct with `!Unpin`.
#[allow(clippy::exhaustive_structs)] // for the type itself
#[::pin_project::pin_project(!Unpin)]
#[derive(Debug)]
pub struct NotUnpinTupleStruct<T, U>(#[pin] pub T, pub U);
/// Testing enum with `!Unpin`.
#[allow(clippy::exhaustive_enums)] // for the type itself
#[::pin_project::pin_project(
!Unpin,
project = NotUnpinEnumProj,
project_ref = NotUnpinEnumProjRef,
)]
#[derive(Debug)]
pub enum NotUnpinEnum<T, U> {
/// Struct variant.
Struct {
/// Pinned field.
#[pin]
pinned: T,
/// Unpinned field.
unpinned: U,
},
/// Tuple variant.
Tuple(#[pin] T, U),
/// Unit variant.
Unit,
}
|