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
Auto merge of #59500 - crlf0710:boxed-closure-impls, r=cramertj
Unsized rvalues: implement boxed closure impls. (2nd try)
This is a rebase of S-blocked-closed PR #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.
| - 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
| - 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