You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#59500 - crlf0710:boxed-closure-impls, r=cramertj
Unsized rvalues: implement boxed closure impls. (2nd try)
This is a rebase of S-blocked-closed PR rust-lang#55431 to current master. LLVM has moved forward since then, so maybe we can check whether the new LLVM 8.0 version unblocked this work.
This had been a temporary alternative to the following impls:
10
+
11
+
```rust,ignore
12
+
impl<A, F> FnOnce for Box<F> where F: FnOnce<A> + ?Sized {}
13
+
impl<A, F> FnMut for Box<F> where F: FnMut<A> + ?Sized {}
14
+
impl<A, F> Fn for Box<F> where F: Fn<A> + ?Sized {}
15
+
```
16
+
17
+
The impls are parallel to these (relatively old) impls:
18
+
19
+
```rust,ignore
20
+
impl<A, F> FnOnce for &mut F where F: FnMut<A> + ?Sized {}
21
+
impl<A, F> FnMut for &mut F where F: FnMut<A> + ?Sized {}
22
+
impl<A, F> Fn for &mut F where F: Fn<A> + ?Sized {}
23
+
impl<A, F> FnOnce for &F where F: Fn<A> + ?Sized {}
24
+
impl<A, F> FnMut for &F where F: Fn<A> + ?Sized {}
25
+
impl<A, F> Fn for &F where F: Fn<A> + ?Sized {}
26
+
```
27
+
28
+
Before the introduction of [`unsized_locals`][unsized_locals], we had been unable to provide the former impls. That means, unlike `&dyn Fn()` or `&mut dyn FnMut()` we could not use `Box<dyn FnOnce()>` at that time.
`FnBox()` is an alternative approach to `Box<dyn FnBox()>` is delegated to `FnBox::call_box` which doesn't need unsized locals. As we now have `Box<dyn FnOnce()>` working, the `fnbox` feature is going to be removed.
= note: move occurs because `*f` has type `F`, which does not implement the `Copy` trait
20
+
= note: move occurs because `f` has type `std::boxed::Box<F>`, which does not implement the `Copy` trait
21
21
22
22
error[E0499]: cannot borrow `*f` as mutable more than once at a time
23
23
--> $DIR/two-phase-nonrecv-autoref.rs:76:11
@@ -28,30 +28,18 @@ LL | f(f(10));
28
28
| first mutable borrow occurs here
29
29
| first borrow later used by call
30
30
31
-
error[E0161]: cannot move a value of type dyn std::ops::FnOnce(i32) -> i32: the size of dyn std::ops::FnOnce(i32) -> i32 cannot be statically determined
32
-
--> $DIR/two-phase-nonrecv-autoref.rs:85:9
33
-
|
34
-
LL | f(f(10));
35
-
| ^
36
-
37
-
error[E0161]: cannot move a value of type dyn std::ops::FnOnce(i32) -> i32: the size of dyn std::ops::FnOnce(i32) -> i32 cannot be statically determined
38
-
--> $DIR/two-phase-nonrecv-autoref.rs:85:11
39
-
|
40
-
LL | f(f(10));
41
-
| ^
42
-
43
-
error[E0382]: use of moved value: `*f`
31
+
error[E0382]: use of moved value: `f`
44
32
--> $DIR/two-phase-nonrecv-autoref.rs:85:11
45
33
|
46
34
LL | f(f(10));
47
35
| - ^ value used here after move
48
36
| |
49
37
| value moved here
50
38
|
51
-
= note: move occurs because `*f` has type `dyn std::ops::FnOnce(i32) -> i32`, which does not implement the `Copy` trait
39
+
= note: move occurs because `f` has type `std::boxed::Box<dyn std::ops::FnOnce(i32) -> i32>`, which does not implement the `Copy` trait
52
40
53
41
error[E0502]: cannot borrow `a` as immutable because it is also borrowed as mutable
54
-
--> $DIR/two-phase-nonrecv-autoref.rs:129:27
42
+
--> $DIR/two-phase-nonrecv-autoref.rs:125:27
55
43
|
56
44
LL | double_access(&mut a, &a);
57
45
| ------------- ------ ^^ immutable borrow occurs here
@@ -60,7 +48,7 @@ LL | double_access(&mut a, &a);
60
48
| mutable borrow later used by call
61
49
62
50
error[E0502]: cannot borrow `i` as immutable because it is also borrowed as mutable
63
-
--> $DIR/two-phase-nonrecv-autoref.rs:157:7
51
+
--> $DIR/two-phase-nonrecv-autoref.rs:153:7
64
52
|
65
53
LL | i[i[3]] = 4;
66
54
| --^----
@@ -70,7 +58,7 @@ LL | i[i[3]] = 4;
70
58
| mutable borrow later used here
71
59
72
60
error[E0502]: cannot borrow `i` as immutable because it is also borrowed as mutable
73
-
--> $DIR/two-phase-nonrecv-autoref.rs:163:7
61
+
--> $DIR/two-phase-nonrecv-autoref.rs:159:7
74
62
|
75
63
LL | i[i[3]] = i[4];
76
64
| --^----
@@ -79,7 +67,7 @@ LL | i[i[3]] = i[4];
79
67
| mutable borrow occurs here
80
68
| mutable borrow later used here
81
69
82
-
error: aborting due to 9 previous errors
70
+
error: aborting due to 7 previous errors
83
71
84
-
Some errors occurred: E0161, E0382, E0499, E0502.
85
-
For more information about an error, try `rustc --explain E0161`.
72
+
Some errors occurred: E0382, E0499, E0502.
73
+
For more information about an error, try `rustc --explain E0382`.
| - consider adding a `Copy` constraint to this type argument
14
+
| - move occurs because `f` has type `std::boxed::Box<F>`, which does not implement the `Copy` trait
15
15
LL | f(f(10));
16
16
| - ^ value used here after move
17
17
| |
18
18
| value moved here
19
-
|
20
-
= note: move occurs because `*f` has type `F`, which does not implement the `Copy` trait
21
19
22
20
error[E0499]: cannot borrow `*f` as mutable more than once at a time
23
21
--> $DIR/two-phase-nonrecv-autoref.rs:76:11
@@ -28,30 +26,18 @@ LL | f(f(10));
28
26
| first mutable borrow occurs here
29
27
| first borrow later used by call
30
28
31
-
error[E0161]: cannot move a value of type dyn std::ops::FnOnce(i32) -> i32: the size of dyn std::ops::FnOnce(i32) -> i32 cannot be statically determined
32
-
--> $DIR/two-phase-nonrecv-autoref.rs:85:9
33
-
|
34
-
LL | f(f(10));
35
-
| ^
36
-
37
-
error[E0161]: cannot move a value of type dyn std::ops::FnOnce(i32) -> i32: the size of dyn std::ops::FnOnce(i32) -> i32 cannot be statically determined
0 commit comments