2023-04-12 18:03:11 -04:00
|
|
|
error[E0277]: `PhantomPinned` cannot be unpinned
|
|
|
|
--> $DIR/suggest-pin-macro.rs:22:17
|
|
|
|
|
|
|
|
|
LL | dummy(test1.get_mut());
|
2024-01-29 18:31:02 +00:00
|
|
|
| ^^^^^^^ within `Test`, the trait `Unpin` is not implemented for `PhantomPinned`, which is required by `Test: Unpin`
|
2023-04-12 18:03:11 -04:00
|
|
|
|
|
|
|
|
= note: consider using the `pin!` macro
|
|
|
|
consider using `Box::pin` if you need to access the pinned value outside of the current scope
|
|
|
|
note: required because it appears within the type `Test`
|
|
|
|
--> $DIR/suggest-pin-macro.rs:5:8
|
|
|
|
|
|
|
|
|
LL | struct Test {
|
|
|
|
| ^^^^
|
|
|
|
note: required by a bound in `Pin::<&'a mut T>::get_mut`
|
|
|
|
--> $SRC_DIR/core/src/pin.rs:LL:COL
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-04-12 18:03:11 -04:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|