-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suggest
Pin::as_mut
when encountering borrow error
- Loading branch information
Showing
5 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// run-rustfix | ||
use std::pin::Pin; | ||
|
||
struct Foo; | ||
|
||
impl Foo { | ||
fn foo(self: Pin<&mut Self>) {} | ||
} | ||
|
||
fn main() { | ||
let mut foo = Foo; | ||
let mut foo = Pin::new(&mut foo); | ||
foo.as_mut().foo(); | ||
foo.foo(); //~ ERROR use of moved value | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// run-rustfix | ||
use std::pin::Pin; | ||
|
||
struct Foo; | ||
|
||
impl Foo { | ||
fn foo(self: Pin<&mut Self>) {} | ||
} | ||
|
||
fn main() { | ||
let mut foo = Foo; | ||
let mut foo = Pin::new(&mut foo); | ||
foo.foo(); | ||
foo.foo(); //~ ERROR use of moved value | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
error[E0382]: use of moved value: `foo` | ||
--> $DIR/pin-mut-reborrow.rs:14:5 | ||
| | ||
LL | let mut foo = Pin::new(&mut foo); | ||
| ------- move occurs because `foo` has type `Pin<&mut Foo>`, which does not implement the `Copy` trait | ||
LL | foo.foo(); | ||
| ----- `foo` moved due to this method call | ||
LL | foo.foo(); | ||
| ^^^ value used here after move | ||
| | ||
note: `Foo::foo` takes ownership of the receiver `self`, which moves `foo` | ||
--> $DIR/pin-mut-reborrow.rs:7:12 | ||
| | ||
LL | fn foo(self: Pin<&mut Self>) {} | ||
| ^^^^ | ||
help: consider reborrowing the `Pin` instead of moving it | ||
| | ||
LL | foo.as_mut().foo(); | ||
| +++++++++ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0382`. |