-
I'm writing an Is it impossible to avoid |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
For soundness; see #2612 for more. Using |
Beta Was this translation helpful? Give feedback.
-
It's because it takes |
Beta Was this translation helpful? Give feedback.
It's because it takes
&mut self
rather thanPin<&mut Self>
. You can still use it with!Unpin
types by usingSelf = Pin<&mut T>
.