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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
//! [`droppable_pin!`]: `droppable_pin!`
//! [`pin_drop!`]: `pin_drop!`
//! [`pin_set!`]: `pin_set!`
// Base image sourced from Disney's The Lion King, used under fair use.
/// Invoke this macro around a given `let [mut] var = pin!()` declaration to allow invoking
/// [`pin_drop!`] and [`pin_set!`] on the given `var`, which have in turn been designed to avoid
/// silly borrow-checking errors.
///
/// # Syntax usage
///
/// ```rust
/// # use ::core::pin::pin;
/// # use ::droppable_pin::droppable_pin;
/// # async fn foo() {}
/// # async fn bar() {}
/// # /*
/// droppable_pin! {
/// let mut <varname> = pin!(<expr>);
/// /* You may have multiple such declarations in the same macro invocation. */
/// }
/// # */
///
/// // For instance:
/// droppable_pin! {
/// let mut a = pin!(foo());
/// let mut b = pin!(bar());
/// }
/// ```
///
/// # Motivation
///
/// <details open class="custom"><summary><span class="summary-box"><span>Click to hide</span></span></summary>
///
/// This is mainly useful when wanting to re-assign an `&mut`-borrowing `async fn` output (or,
/// more generally, some `-> impl Trait` value (or, even more generally, some value with drop glue
/// that makes use of that `&mut` borrow)) to some `pin!` value.
///
/// For instance, consider the following snippet:
///
/// ```rust, compile_fail
/// async fn some_async_fn(_: &mut i32) {}
///
/// let mut borrowed = 42;
/// let mut p = None;
/// for _ in 0..2 {
/// p = Some(some_async_fn(&mut borrowed));
/// }
/// ```
///
/// which errors with:
///
/// ```rust ,ignore
/// # (); /*
/// error[E0499]: cannot borrow `borrowed` as mutable more than once at a time
/// --> src/_lib.rs:70:23
/// |
/// 8 | p = some_async_fn(&mut borrowed);
/// | ^^^^^^^^^^^^^ `borrowed` was mutably borrowed here in the previous iteration of the loop
/// 9 | }
/// # */
/// ```
///
/// And even if you set `p` to `None` before the assignment:
///
/// ```rust ,compile_fail
/// async fn some_async_fn(_: &mut i32) {}
///
/// let mut borrowed = 42;
/// let mut p;
/// for _ in 0..2 {
/// p = None;
/// p = Some(some_async_fn(&mut borrowed));
/// }
/// ```
///
/// it will still fail, with:
///
/// ```rust ,ignore
/// # (); /*
/// error[E0499]: cannot borrow `borrowed` as mutable more than once at a time
/// --> src/_lib.rs:94:28
/// |
/// 8 | p = None;
/// | - first borrow might be used here, when `p` is dropped and runs the destructor for type `Option<impl Future<Output = ()>>`
/// 9 | p = Some(some_async_fn(&mut borrowed));
/// | ^^^^^^^^^^^^^ `borrowed` was mutably borrowed here in the previous iteration of the loop
/// # */
/// ```
///
/// - Notice how the error message already starts mentioning ``the destructor for type `Option<impl …>```.
///
/// The only solution, here, is to actually `drop`/move out of the `p` variable, so as to properly
/// mark it as "empty"/exhausted to Rust (dropck, to be more precise), so that the borrow-checker
/// give its green-light to this snippet:
///
/// ```rust
/// async fn some_async_fn(_: &mut i32) {}
///
/// let mut borrowed = 42;
/// let mut p = None;
/// for _ in 0..2 {
/// drop(p);
/// p = Some(some_async_fn(&mut borrowed)); // ✅
/// }
/// ```
///
/// So far so good, but now consider that for this pattern to be genuinely useful, we will want to
/// *actually use `p`* in the loop, and since it's owned from outside, we will probably want to be
/// using it **by reference**, that is, behind (exclusive) pointer _indirection_!.
///
/// And in the context of `async fn`s, such indirection needs to be `Pin`-wrapped:
///
/// ```rust ,compile_fail
/// async fn some_async_fn() {}
///
/// # async {
/// let mut p = some_async_fn();
/// // Error, needed either for `some_async_fn()` to be `Unpin`,
/// // or for the reference to be a `Pin`-wrapped one.
/// (&mut p).await;
/// # };
/// ```
///
/// The correct way to do this would be:
///
/// ```rust
/// async fn some_async_fn() {}
///
/// # async {
/// let mut p = ::core::pin::pin!(some_async_fn());
/// p.as_mut().await; // ✅
/// # };
/// ```
///
/// But going back to our `loop {}`-dropck-borrow-checking-error situation, this runs into a problem:
///
/// ```rust ,compile_fail
/// use ::core::pin::pin;
///
/// async fn some_async_fn(_: &mut i32) {}
///
/// let mut borrowed = 42;
/// let mut p = pin!(None);
/// for _ in 0..2 {
/// drop(*p); // <- Err… how are we supposed to `drop()` the thing? It is what our `pin!`
/// // points to, but the very safety and soundness of the design of `pin!` is for
/// // us not to be able to mishandle it! 😕😕
/// p.set(Some(some_async_fn(&mut borrowed)));
/// }
/// ```
///
/// Hence the problem.
///
/// This is where the [`droppable_pin!`] macro, alongside [`pin_drop!`] and [`pin_set!`], enter into
/// play:
///
/// </details>
///
/// ## Example
///
/// ```rust
/// use ::core::pin::pin;
/// use ::droppable_pin::{droppable_pin, pin_drop, pin_set};
///
/// async fn some_async_fn(_: &mut i32) {}
///
/// let mut borrowed = 42;
/// droppable_pin! { // 👈
/// let mut p = pin!(None);
/// }
/// for _ in 0..2 {
/// pin_drop!(p); // 👈
/// pin_set!(p, Some(some_async_fn(&mut borrowed))); // ✅
/// // 👆
/// }
/// ```
///
/// ### A more realistic example
///
/// ```rust
/// use ::core::pin::pin;
/// use ::droppable_pin::{droppable_pin, pin_drop, pin_set}; // 👈
/// use ::futures_util::future::{Fuse, FusedFuture, FutureExt};
///
/// async fn foo() {}
/// async fn bar(_borrowed: &mut i32) {}
///
/// # fn block_on(fut: impl Future<Output = ()>) {
/// # fut.now_or_never().expect("there to be no suspensions")
/// # }
/// #
/// # block_on(async {
/// let mut borrowed = 42;
/// droppable_pin! { // 👈
/// let mut a = pin!(foo().fuse());
/// let mut b = pin!(bar(&mut borrowed).fuse());
/// }
/// loop {
/// ::futures_util::select! {
/// () = a.as_mut() => {
/// /* handle this case... */
/// # if true { break; }
///
/// // Setup for next loop iteration:
/// pin_set!(a, foo().fuse());
/// // 👆
/// // same as:
/// a.set(foo().fuse());
/// },
/// () = b.as_mut() => {
/// /* handle this case... */
///
/// // Setup for next loop iteration:
/// // 1. Needed because of the `&mut borrowed` capture (see # Motivation).
/// // 👇
/// pin_drop!(b);
/// pin_set!(b, bar(&mut borrowed).fuse());
/// // 👆
/// // 2. Cannot use `Pin::set()` here because of `pin_drop!()`.
/// },
/// }
/// }
/// # });
/// ```
///
/// And rewritten to avoid code duplication (of the (re)initializations of `a` and `b`):
///
/// ```rust
/// use ::core::pin::pin;
/// use ::droppable_pin::{droppable_pin, pin_drop, pin_set}; // 👈
/// use ::futures_util::future::{Fuse, FusedFuture, FutureExt};
///
/// async fn foo() {}
/// async fn bar(_borrowed: &mut i32) {}
///
/// # fn block_on(fut: impl Future<Output = ()>) {
/// # fut.now_or_never().expect("there to be no suspensions")
/// # }
/// #
/// # block_on(async {
/// let mut borrowed = 42;
/// droppable_pin! { // 👈
/// let mut a = pin!(Fuse::terminated());
/// let mut b = pin!(Fuse::terminated());
/// }
/// loop {
/// if a.is_terminated() {
/// // 👇
/// pin_set!(a, foo().fuse());
/// // same as:
/// a.set(foo().fuse());
/// }
/// if b.is_terminated() {
/// // 1. Needed because of the `&mut borrowed` capture (see # Motivation).
/// // 👇
/// pin_drop!(b);
/// pin_set!(b, bar(&mut borrowed).fuse());
/// // 👆
/// // 2. Cannot use `Pin::set()` here because of `pin_drop!()`.
/// }
/// ::futures_util::select! {
/// () = a.as_mut() => {
/// /* handle this case... */
/// # if true { break; }
/// },
/// () = b.as_mut() => {
/// /* handle this case... */
/// },
/// }
/// }
/// # });
/// ```
} else ;
$cratepaste!
)+
)}
/// Drops, *in-place*, the `value: T` to which the given `$var: Pin<&mut T>` points to.
///
/// It does so in a manner of which drop-check will be aware of, avoiding a borrow-checking error
/// which the more naive `$var.set(<dummy>)` would run into.
///
/// Note that this API is only available for `$var: Pin<&mut _>` bindings which stem from
/// a [`droppable_pin!`] invocation.
/// Same as <code>[Pin::set](&mut $var, $value)</code>, but usable even after [`pin_drop!`] has been
/// invoked on the given `$var`.
///
/// Note that this API is only available for `$var: Pin<&mut _>` bindings which stem from
/// a [`droppable_pin!`] invocation.
///
/// [Pin::set]: [`::core::pin::Pin::set()`]
// macro internals
/** Not part of the public API */ pub
/// Not part of the public API.
///
/// Checks that the given `$var` do correspond to a [`droppable_pin!`] declaration.